Jump to content

Java applet

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 208.160.249.xxx (talk) at 08:11, 27 July 2001. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Writing an applet? This is what you need to do.


  • Write and compile a class that extends java.applet.Applet
  • Write an HTML file that has an <applet code="yourclass.class" height="[height]" width="[width]"></applet> tag in it.
  • Use


   appletviewer yourhtml.html


to view the file.