2

Many physical animation / simulation applets on the internet are decades old Java applets and it is extremely difficult to get them to work. What would be the best way to run a Java applet (which browsers do not allow)?

For example, I have a .class used in a .htm

<applet code="taylor.class" name="taylor" width="900" height="800">
    <param name="label" value="This string was passed from the HTML host.">
    <param name="background" value="008080">
    <param name="foreground" value="FFFFFF">
</applet>

How do I run this without being blocked by security things?

Tunaki
  • 132,869
  • 46
  • 340
  • 423
Gappy Hilmore
  • 440
  • 4
  • 13

1 Answers1

0

You can use the appletviewer of the JDK. The appletviewer allows you to open the applet (via its URL) without the need to use a browser.

wero
  • 32,544
  • 3
  • 59
  • 84