I’ve been trying to run a simple applet that I created from the command line. I tried just doing:
C:\java Applet
It obviously didn’t work; however, I noticed that Eclipse lets me run the applet if I select the class and select run as java applet. How does Eclipse do this?
I believe IDEs typically launch applets using the appletviewer, but using an unrestricted security policy (the appletviewer when launched from the command line is sand-boxed).
To launch the applet viewer from the command line, try this:
prompt> appletviewer TheApplet.javaNote particularly that rather than provide HTML as the argument to the applet viewer (the old way), applet viewer will now parse the applet element directly out of the source.
See also the applet info. page for an example of using the applet element at the top of the source: E.G.
When launched from the command line, the applet viewer will have an even more restrictive sand-box than is applied to an applet deployed in a browser.
An alternative to appletviewer is Appleteer which I can highly recommend, because it is better than appletviewer ( and I wrote it ;).