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:
Rhino Tool - JavaScript Shell
How to run the Rhino Tool JavaScript Shell?
✍: FYIcenter.com
Rhino Tool JavaScript Shell allows you to run JavaScript statements in
an interactive shell.
JavaScript Shell is included in the rhino-Rhino1_7_14_Release.zip package in the "toolsrc" sub-directory.
Here is how to use the JavaScript Compiler:
1. Use "javac" to prepare supporting classes:
fyicenter> cd rhino-Rhino1_7_14_Release rhino-Rhino1_7_14_Release> cd toolsrc toolsrc> javac -cp ../../rhino-runtime-1.7.14.jar org/mozilla/javascript/tools/*.java
2. Use "javac" to prepare the Shell class:
toolsrc> javac -cp .:../../rhino-runtime-1.7.14.jar org/mozilla/javascript/tools/shell/Main.java
3. Run JavaScript Shell:
toolsrc> java -cp .:../../rhino-runtime-1.7.14.jar org.mozilla.javascript.tools.shell.Main Rhino 1.7.14 js> Math.PI; 3.141592653589793 js> System.out.println("Hello World!"); js: uncaught JavaScript runtime exception: ReferenceError: "System" is not defined. js> java.lang.System.out.println("Hello World!"); Hello World! js> load("Hello.js"); Hello, welcome to FYIcenter.com! js> <Ctrl-C>
⇒ Using Rhino JavaScript Library in Java Programs
⇐ Rhino Tool - JavaScript Compiler
2022-04-13, ∼710🔥, 0💬
Popular Posts:
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool. JDK 11 JDI tool com...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
JDK 11 jdk.localedata.jmod is the JMOD file for JDK 11 Localedata module. JDK 11 Locale Data module ...