Java Applet Notes
Java Applet Notes
Java Applet Notes
An applet is a Java program that runs in a Web browser. An applet can be a fully functional
Java application because it has the entire Java API at its disposal. There are certain differences
between Applet and Java Standalone Application that are described below:
1. init() Method: This method is intended for whatever initialization is needed for your
applet. It is called after the param tags inside the applet tag have been processed.
2. start() method: This method is automatically called after the browser calls the init()
method. It is also called whenever the user returns to the page containing the applet
after having gone off to other pages.
3. stop() method: This method is automatically called when the user moves off the page
on which the applet sits. It can, therefore, be called repeatedly in the same applet.
4. destroy() method: This method is only called when the browser shuts down normally.
Because applets are meant to live on an HTML page, you should not normally leave
resources behind after a user leaves the page that contains the applet.
5. paint() method: Invoked immediately after the start() method, and also any time the
applet needs to repaint itself in the browser. The paint() method is actually inherited
from the java.awt.
//Code of MyFirstApplet.java
Output
<PARAM..> tag is used to pass the parameter value from HTML file to Applet code. In the
example shown below parameter which is used is named as “name” and value of the parameter
is initialized as “Achin Jain”. Now in the Applet code, you should use same parameter name
as “name” to fetch the value.
//Code of PARAM_Test.html
Output