Borut Flis
Borut Flis

Reputation: 16415

Integrate applet in html?

<html>
<applet code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream" archive="outIdd.jar" width="500" height="500"/>

</html>

I try to open this applet in HTML, but I get a ClassNotFoundException. The html is in the same directory as the .jar. In the code atribute I put the directory structure to the class in the .jar. Somebody please try these.

Upvotes: 1

Views: 308

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168845

<applet 
  code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream" 
  archive="outIdd.jar" 
  width="500" 
  height="500"/>

The applet element was ever intended to be self-closed, and that is a lower case 'l' (for Lucy) rather than an upper case 'I' (for Imogen) in the jar name. So the element should be something like:

<applet 
  code="de.wim.outldd.examples.DragDropTest_ModeMemoryStream" 
  archive="outldd.jar" 
  width="500" 
  height="500">
</applet>

Upvotes: 2

Related Questions