[java] Newbie to applets question

Started by
0 comments, last by avidlinuxuser 17 years, 7 months ago
I'm looking to use a jar library from my applet, possibly a couple of them, but I'm unfamiliar about how an applet finds jar files that are not part of the JRE that the browser uses -- can someone give a hint about this. Thanks, L-
"Education is when you read the fine print; experience is what you get when you don't." -Pete Seegerwww.lucid-edge.net
Advertisement
Applet Tag
<applet class="..." codebase="nameofarchive.jar" ...>
Object Tag
<object ...>
<param name="code" value="...">
<param name="codebase" value="nameofarchive.jar">

I think this is correct. It's been a while since I've worked with applets.

This topic is closed to new replies.

Advertisement