Jump to content

AppletViewer

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 117.193.158.167 (talk) at 12:18, 25 February 2011 (HelloJava.java). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

import java.awt.*; import java.applet.*; public class HelloJava extends Applet {

     public void paint (Graphics g)
     {
          g.drawString("Hello Java", 10, 100);
     }

}