Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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, 233👍, 0💬
Popular Posts:
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but c...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...
How to download and install JDK (Java Development Kit) 1.4? If you want to write Java applications, ...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
What Is commons-net-ftp-2.0.jar? commons-net-ftp-2.0.jar is the JAR file for Apache Commons Net FTP ...