Applet In Java Explained
By Sriram
Updated on Nov 24, 2022 | 9 min read | 6.0k views
Share:
For working professionals
For fresh graduates
More
By Sriram
Updated on Nov 24, 2022 | 9 min read | 6.0k views
Share:
In the era of the internet, web pages have become a common thing in the world. These are worldwide viewed through different web browsers and contain information like text, or sometimes it consists of hyperlinks or links that connect to another webpage. The viewers are always provided with information whenever they use a webpage. The Java Applet is a unique program within the web pages that helps generate dynamic content. These Applets run within the browser, and the working of the Applet is on the Client side. The use of the Java Applet provides several advantages. A few of the benefits of the Java Applet are:
Although several advantages lie with the use of Java Applets, there is still a drawback of the Applet. One of the drawbacks of the Applet is that for the execution of the Applet at the client-side, a plugin is required.
The Applet may be defined as a program in Java that is embedded in a webpage. It is embedded using the tag of OBJECT or APPLET and then hosted on the webserver. These are mainly used for making the web pages dynamic and also entertaining.
A few important points of the Java Applets are:
The understanding of the Java Applet will begin when the life cycle of the Applet is understood. There are a few steps in the life cycle of a Java Applet, such as; the initialization of the Applet, the starting of the Applet; Applet gets painted, the stopping of the Applet, and the destruction of the Applet. For carrying out these different steps, several functions are used by Java.
init(): The first method called at the beginning of the Applet is init(). During this method, the variables should be initialized. During the Applet run time, the method is called for only once.
start(): Just after the init() method, the method start() is called. The main function of the method is to restart the Applet that has been stopped as it can be observed that the method init(0 is called for only once, and that is when the Applet is loaded, while the method start() is called every time the display of the HTML document of the Applet is carried out on the screen. If a user returns after leaving a webpage, the execution will be resumed at the method start(0 by the Applet.
paint(): Whenever the output of an AWT-based Applet is to be redrawn, the method of paint() is called each time. Several reasons might exist for this calling: the window over which the Applet was running got overwritten by a different window and then uncovered. Or sometimes, when an Applet window may get minimized and then it might get restored. The method of paint() is also called when the execution of the Applet begins. The cause may be different, but whenever an Applet is redrawn, the method paint() is to be called.
One parameter is associated with the method paint(), which is of the type graphics. The parameter graphics contain the context of graphics that describes the environment of graphics whenever the Applet is running. This context is used whenever the Applet output is required.
Also, from all the methods mentioned above used in the Java Applet, only this method is parameterized.
The syntax of the method is
public void paint(Graphics g)
Where the object reference for the class Graphic is g.
stop(): Whenever the web browser has to leave the HTML document containing the Applet, like when it is moving to another page, the method stop() is called. The Applet keeps on running when the method stop() is called. The method is called so that the threads are suspended as they are not required to be executed when the Java Applet is invisible. While returning to the page, it can be restarted through the method start().
destroy( ): The method of destroy() is called when it is determined that the Applet will be removed from the memory. For freeing up the memory, every resource should be freed up that is being used by the Applet. The method stop() is always called before the calling of the method destroy().
”
upGrad’s Exclusive Software Development Webinar for you –
SAAS Business – What is So Different?
”
An Applet Program in Java is shown below-
The explanation of the program is as follows:
The general form of the call is
The string is output at the location x,y. The location of 0,0 is at the upper-left corner of the Java window. When there is a call to the function drawString( ) in the Java Applet, “Hello World” is displayed.
It can be noticed that there is no method of main() in the Java program. So, like the other programs in Java, the Applet execution does not begin at the main(). Also, most of the Applets don’t have the function main(). However, the execution of the Applet begins when the class names are passed to the viewer of the Applet or on to a browser of the network.
The above Applet is run after the source code “HelloWorld.java” is entered. The compilation of the Applet is in a way similar to the compilation of other Java programs. But running the source code through the command of Java will result in an error as it isn’t an application.
Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs or Masters Programs to fast-track your career.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
India’s #1 Tech University
Executive PG Certification in AI-Powered Full Stack Development
77%
seats filled
Top Resources