views:

75

answers:

2

I have an applet that works alright on this page. It just references the .class file. (unfortunately, I have lost the source, and the jar files.)

I want to reference it here, however it does not start. Probably because it cannot find the class file. the applet tag looks like this

<applet code="/applets/language/LanguageEngineApplet.class" width="1174" Height="402">
<embed code="/applets/language/LanguageEngineApplet.class" width="1174" height="402" type="application/x-java-applet" pluginspage="http://www.java.com/en/download/manual.jsp"/&gt;
</applet>

I know the .class file is there, because I can link to it. So I'm stumped as to why this won't work.

A: 

I just put the applet in a page on it's own. The problem was not my Java version, it was the class name and the path and the package interacting somehow. I had to put it in a directory on its own, with the html file that referenced it in that directory.

Nathan
A: 

You may want to look at the Java Deployment Toolkit

Joel Carranza