Hello World Applet Example
In this section, you will learn a very simple example in java. This is the first example "Hello World"
Code:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet{
public void paint(Graphics g){
g.drawString("Hello World", 30, 30);
}
}
|
HelloWorld.html:
<html>
<head>
<title>Hello World Applet</title>
</head>
<body>
<applet code="HelloWorld" width="200"
height="200">
</applet>
</body>
</html>
|
Output:
Download Example