I have a Java Applet that needs a 3rd party library, but how do I add the jar to the classpath and reference it to the Java Applet?
My third party library is org.apa
Do you want to embed your applet into a website / HTML with the applet tag?
Deploying With the Applet Tag
To compile it in console use:
javac -classpath C:\dev\YourClass.java C:\dev\3thParty.jar
Compiling the Example Programs