D
Digital Puer
Hi, I am preparing an applet that will be placed in a jar
file. The problem is that the applet uses other jar files.
What is the best way to organize all the files for
downloading, and how should I write the <applet ...>
tags to handle this situation?
Specifically, if my class MyClass.class is placed in
MyJar.jar, and if MyClass uses JarFile1.jar and JarFile2.jar,
would the <applet> tag look like this:
<applet code="MyClass.class"
archive="MyJar.jar JarFile1.jar JarFile2.jar"
width=120 height=120>
</applet>
file. The problem is that the applet uses other jar files.
What is the best way to organize all the files for
downloading, and how should I write the <applet ...>
tags to handle this situation?
Specifically, if my class MyClass.class is placed in
MyJar.jar, and if MyClass uses JarFile1.jar and JarFile2.jar,
would the <applet> tag look like this:
<applet code="MyClass.class"
archive="MyJar.jar JarFile1.jar JarFile2.jar"
width=120 height=120>
</applet>