Hello World Example in Applet JAVA Code

  1. import java.awt.*;  
  2. import java.applet.*;  
  3. /*<applet code="Testapplet" width=800 height=600></applet> */  
  4. public class Testapplet extends Applet  
  5. {  
  6.     public void paint(Graphics g)  
  7.     {  
  8.         g.drawString("hello", 10, 58);  
  9.     }  
  10. }