What is needed in the APPLET tag to cause an applet to be loaded from a JAR file?
Created May 4, 2012
John Zukowski To specify an that an applet loads from a JAR file, instead of from separate classes, add an ARCHIVE attribute to your <APPLET> tag:
<APPLET CODE=AppletClass ARCHIVE="foo.jar" WIDTH=200 HEIGHT=200> </APPLET>If you need to specify multiple JAR files, provide a comma separated list.