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:
JavaScriptHello - SJP API Hello Example
How to use the SJP (Scripting for the Java Platform) API to write a simple "Hello World!" example?
✍: FYIcenter
You can follow this tutorial to use the SJP (Scripting for the Java Platform) API to
write a simple "Hello World!" example:
1. Create a JavaScript ScriptEngine object with an instance of ScriptEngineManager:
ScriptEngineManager f = new ScriptEngineManager();
ScriptEngine e = f.getEngineByName("JavaScript");
2. Call the eval() method on the ScriptEngine object to run a JavaScript code:
e.eval("print(' Hello world!')");
Here is the entire sample program, JavaScriptHello.java, that shows you how to use the SJP (Scripting for the Java Platform) API:
// Copyright (c) 2017 FYIcenter.com
import javax.script.ScriptEngineManager;
import javax.script.ScriptEngine;
public class JavaScriptHello {
public static void main(String[] args) throws Exception {
ScriptEngineManager f = new ScriptEngineManager();
ScriptEngine e = f.getEngineByName("JavaScript");
System.out.println("\nFrom JavaScript:");
e.eval("print(' Hello world!')");
}
}
Compile and run it:
>\fyicenter\jdk-1.8.0\bin\javac JavaScriptHello.java >\fyicenter\jdk-1.8.0\bin\java JavaScriptHello From JavaScript: Hello world!
⇒ JavaScriptEngineInfo.java - JavaScript Engine Details
⇐ What Is SJP (Scripting for the Java Platform)
2017-08-03, ∼1632🔥, 0💬
Popular Posts:
Where to get the Java source code for Connector/J 8.0 Protocol Impl module? Java source code files f...
HttpComponents Client Source Code Files are provided in the source package file, httpcomponents-clie...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...
How to merge two JAR files with "jar" commands? I am tired of specifying multiple JAR files in the c...
What Is XMLBeans xbean.jar 2.6.0? XMLBeans xbean.jar 2.6.0 is the JAR file for Apache XMLBeans 2.6.0...