Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Create an Applet


previous next AddThis Social Bookmark Button


Problem Description:

How to create a basic Applet?

Solution:

Following example demonstrates how to create a basic Applet by extrnding Applet Class.You will need to embed another HTML code to run this program.

import java.applet.*;
import java.awt.*;

public class Main extends Applet{
   public void paint(Graphics g){
      g.drawString("Welcome in Java Applet.",40,20);
   }
}

Now compile the above code and call the generated class in your HTML code as follows:

<HTML>
<HEAD>
</HEAD>
<BODY>
<div >
<APPLET CODE="Main.class" WIDTH="800" HEIGHT="500">
</APPLET>
</div>
</BODY>
</HTML>

Result:

The above code sample will produce the following result in a java enabled web browser.

Welcome in Java Applet.


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names