This given program demonstrate how the Applet works.How the Function get performed?
To run applet Program First we need to initialize the variables,befor that extends the applet class.
First.java:(Created in NET BEANS IDE )
import java.applet.*;
import java.awt.*;
public class First extends Applet
{
public void init()
{
}
public void start()
{
}
public void stop()
{
}
public void destroy()
{
}
public void paint(Graphics g)
{
showStatus("applet Started");
}
}
To run this program:
$javac First.java
$appletviewer First
OutPut:
To get more details follow Java Label....
To run applet Program First we need to initialize the variables,befor that extends the applet class.
First.java:(Created in NET BEANS IDE )
import java.applet.*;
import java.awt.*;
public class First extends Applet
{
public void init()
{
}
public void start()
{
}
public void stop()
{
}
public void destroy()
{
}
public void paint(Graphics g)
{
showStatus("applet Started");
}
}
To run this program:
$javac First.java
$appletviewer First
OutPut:
No comments:
Post a Comment