Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JavaScriptEngineInfo.java - JavaScript Engine Details
How to get JavaScript Engine detailed information from the SJP API?
✍: FYIcenter
If you want to verify the JavaScript Engine detailed information,
you can try the following example program:
// Copyright (c) 2017 FYIcenter.com
import javax.script.ScriptEngineManager;
import javax.script.ScriptEngine;
import javax.script.ScriptEngineFactory;
public class JavaScriptEngineInfo {
public static void main(String[] args) throws Exception {
ScriptEngineManager m = new ScriptEngineManager();
ScriptEngine e = m.getEngineByName("JavaScript");
System.out.println("\nFrom JavaScript:");
e.eval("print(' Hello world!')");
ScriptEngineFactory f = e.getFactory();
System.out.println("\nJavaScript engine info:");
System.out.println(" Engine name: "+f.getEngineName());
System.out.println(" Engine version: "+f.getEngineVersion());
System.out.println(" Language name: "+f.getLanguageName());
System.out.println(" Language version: "+f.getLanguageVersion());
System.out.println(" Engine class: "+e.getClass().getName());
System.out.println(" Factory class: "+f.getClass().getName());
System.out.println(" Manager class: "+m.getClass().getName());
}
}
Compile the example with Java SE 7 JDK compiler:
>\fyicenter\jdk-1.7.0\bin\javac JavaScriptEngineInfo.java >\fyicenter\jdk-1.7.0\bin\java JavaScriptEngineInfo From JavaScript: Hello world! JavaScript engine info: Engine name: Mozilla Rhino Engine version: 1.7 release 3 PRERELEASE Language name: ECMAScript Language version: 1.8 Engine class: com.sun.script.javascript.RhinoScriptEngine Factory class: com.sun.script.javascript.RhinoScriptEngineFactory Manager class: javax.script.ScriptEngineManager
The output tells you the Rhino JavaScript library is the default JavaScript engine in Java SE 7.
⇒ JavaScript Engine Changed in Java SE 8
⇐ JavaScriptHello - SJP API Hello Example
2017-07-25, ∼2057🔥, 0💬
Popular Posts:
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...