I get the ClassNotFoundException error when I make my html file with the code and jar file. Not sure why. Here's what I have:
<html>
<head>
<title>
Test Applet
</title>
</head>
<body>
<h2>Test Applet</h2>
<applet
code="Testing.class"
archive="myTestJar.jar"
width=550 height=300>
</applet>
</body>
</html>
I simply have the class in a jar file and tried to reference using archive but it doesn't work.