The appletviewer command allows you to run applets outside of the context of a World-Wide Web browser.
appletviewer [ options ] urls ...
The appletviewer command connects to the document(s) or resource(s) designated by urls and displays each applet referenced by that document in its own window. Note: if the document(s) referred to by urls does not reference any applets with the APPLET tag, appletviewer does nothing.appletviewer supports the use of native MIPS instructions instead of Java bytecode in order to improve Java runtime performance. The MIPS instructions can be generated on the fly (see the -jit option below) or can be generated ahead of time by javat and read from the .class file (see the -tran option below). Using the -jit and -tran options together causes MIPS code to be read in from .class files where possible, and causes code in other classes to be translated when they are loaded at run time. For more details, see here.
The following options support the use of native MIPS code generated directly from the Java bytecode:
- -debug
- Starts the applet viewer in the Java debugger - jdb - thus allowing you to debug the applets in the document.
- -jit/-nojit
- Causes/prevents translation of the code for each class when it is loaded. The current default is -nojit.
javat