Applet is a special type of program that is embedded in the webpage to generate the dynamic content. It runs inside the browser and works at client side.
Advantage of Applet
There are many advantages of applet. They are as follows:
- It works at client side so less response time.
- Secured
- It can be executed by browsers running under many plateforms, including Linux, Windows, Mac Os etc.
Drawback of Applet
- Plugin is required at client browser to execute applet.
Hierarchy of Applet
| As displayed in the above diagram, Applet class extends Panel. Panel class extends Container which is the subclass of Component. Lifecycle of Java Applet
Lifecycle methods for Applet:The java.applet.Applet class 4 life cycle methods and java.awt.Component class provides 1 lifecycle methods for an applet. java.applet.Applet classFor creating any applet java.applet.Applet class must be inherited. It provides 4 life cyclemethods of applet.
java.awt.Component classThe Component class provides 1 life cycle method of applet.
Who is responsible to manage the life cycle of an applet?Java Plug-in software.How to run an Applet?There are two ways to run an applet
Simple example of Applet by html file:To execute the applet by html file, create an applet and compile it. After that create an html file and place the applet code in html file. Now click the html file.
myapplet.html
Simple example of Applet by appletviewer tool:To execute the applet by appletviewer tool, create an applet that contains applet tag in comment and compile it. After that run it by: appletviewer First.java. Now Html file is not required but it is for testing purpose only.
c:\>javac First.java c:\>appletviewer First.java |
No comments:
Post a Comment