Applets

A Java applet is like fully functional Java application because it has the entire Java API at its disposal. The creation of applets follows the same three step process of write, compile and run. The difference is, instead of running on your desktop, they run as part of a web page. There are some important differences between an applet and a standalone Java application, including the following:
  1. An applet is a Java class that extends the java.applet.Applet class.
  2. A main() method is not invoked on an applet, and an applet class will not define main().
  3. Applets are designed to be embedded within an HTML page.
  4. When a user views an HTML page that contains an applet, the code for the applet is downloaded to the user's machine.
  5. A JVM is required to view an applet. The JVM can be either a plug-in of the Web browser or a separate runtime environment.
  6. The JVM on the user's machine creates an instance of the applet class and invokes various methods during the applet's lifetime.
  7. Applets have strict security rules that are enforced by the Web browser. The security of an applet is often referred to as sandbox security, comparing the applet to a child playing in a sandbox with various rules that must be followed.
  8. Other classes that the applet needs can be downloaded in a single Java Archive (JAR) file.


Post a Comment