1 |
Two ways to run an applet:
-
If you have JDK on one's machine, one can run the applet with appletviewer
-
appletviewer MyApplet.html
-
Alternatively, run Netscape 2.0/3.0/4.0 or Internet Explorer essentially anywhere,
-
point the browser at MyApplet.html, and applet is downloaded from the web server and run by Java interpreter built into the browser.
-
This requires that the .html and .class files are located in the document space of the web server.
|