View All
View All
View All
View All
View All
View All
View All
View All
View All
View All
View All
View All

What is Applet in Java? How to Create & Run?

By Pavan Vadapalli

Updated on Nov 30, 2022 | 7 min read | 6.0k views

Share:

Java applets are short programs created in Java or another programming language that combines Java bytecode and is provided to users as Java bytecode. Java applet was launched by the user from a web page, and it was then processed within a Java virtual machine (JVM) in a procedure distinct from the web browser. A Java applet might appear in a web page frame, a new application window, Sun’s AppletViewer, or a standalone applet testing tool.

Applets give interactive capabilities to web applications that HTML cannot deliver. They can record mouse input and feature controls such as buttons or checkboxes. In addition, an applet can modify the offered graphic information in response to user activities. As a result, applets are ideal for presentation, visualisation, and education.

An applet is a web application embedded in an HTML page with the APPLET or OBJECT tag and hosted on a web server. Applets are utilised to enhance the website’s dynamic and engaging nature.

 Example of an Applet

 import java.applet.*;

import java.awt.*;

public class MyApplet extends Applet

{

 int height, width;

 public void init()

 {

  height = getSize().height;

  width = getSize().width;

  setName(“MyApplet”);

 }

 public void paint(Graphics g)

 {

  g.drawRoundRect(10, 30, 120, 120, 2, 3);

 }

}

 Here’s an example of a Java source code for making a simple calculator using an Applet. The result of the application is also presented below:

/*Java Program to Demonstrate a Basic Calculator using Applet*/

import java.awt.*;

import java.applet.*;

import java.awt.event.*;

public class Calculator extends Applet implements ActionListener

{

TextField inp;

//Function to add features to the frame

public void init()

{

         setBackground(Color.white);

         setLayout(null);

         int i;

         inp = new TextField();

         inp.setBounds(150,100,270,50);

         this.add(inp);

         Button button[] = new Button[10];

         for(i=0;i<10;i++)

         {

         button[i] = new Button(String.valueOf(9-i));

         button[i].setBounds(150+((i%3)*50),150+((i/3)*50),50,50);

         this.add(button[i]);

         button[i].addActionListener(this);

         }

         Button dec=new Button(“.”);

         dec.setBounds(200,300,50,50);

         this.add(dec);

         dec.addActionListener(this);

     Button clr=new Button(“C”);

         clr.setBounds(250,300,50,50);

         this.add(clr);

         clr.addActionListener(this)

         Button operator[] = new Button[5];

         operator[0]=new Button(“/”);

         operator[1]=new Button(“*”);

         operator[2]=new Button(“-“);

         operator[3]=new Button(“+”);

         operator[4]=new Button(“=”);

         for(i=0;i<4;i++)

         {

         operator[i].setBounds(300,150+(i*50),50,50);

         this.add(operator[i]);

         operator[i].addActionListener(this);

         }

         operator[4].setBounds(350,300,70,50);

         this.add(operator[4]);

         operator[4].addActionListener(this);

}

String num1=””;

String op=””;

String num2=””;

//Function to calculate the expression

public void actionPerformed(ActionEvent e)

{

         String button = e.getActionCommand();

     char ch = button.charAt(0);

         if(ch>=’0′ && ch<=’9’|| ch==’.’)

         {

         if (!op.equals(“”))

                     num2 = num2 + button;

         else

                     num1 = num1 + button;  

         inp.setText(num1+op+num2);

         }

         else if(ch==’C’)

         {

         num1 = op = num2 = “”;

         inp.setText(“”);

         }

         else if (ch ==’=’)

         {

         if(!num1.equals(“”) && !num2.equals(“”))

         {

                     double temp;

                 double n1=Double.parseDouble(num1);

                     double n2=Double.parseDouble(num2);

                     if(n2==0 && op.equals(“/”))

                     {

                     inp.setText(num1+op+num2+” = Zero Division Error”);

                     num1 = op = num2 = “”;

                     }

                     else

                     {

                     if (op.equals(“+”))

                         temp = n1 + n2;

                     else if (op.equals(“-“))

                         temp = n1 – n2;

                     else if (op.equals(“/”))

                         temp = n1/n2;

                     else

                         temp = n1*n2;

                     inp.setText(num1+op+num2+” = “+temp);

                     num1 = Double.toString(temp);

                     op = num2 = “”;

             }

         }

         else

         {

                     num1 = op = num2 = “”;

                     inp.setText(“”);

         }

     }

         else

         {

         if (op.equals(“”) || num2.equals(“”))

                     op = button;

         else

         {

                     double temp;

                     double n1=Double.parseDouble(num1);

                     double n2=Double.parseDouble(num2);

                     if(n2==0 && op.equals(“/”))

                     {

                     inp.setText(num1+op+num2+” = Zero Division Error”);

                     num1 = op = num2 = “”;

                     }

                     else

                     {

                     if (op.equals(“+”))

                         temp = n1 + n2;

                     else if (op.equals(“-“))

                         temp = n1 – n2;

                     else if (op.equals(“/”))

                         temp = n1/n2;

                     else

                         temp = n1*n2;

                     num1 = Double.toString(temp);

                     op = button;

                     num2 = “”;

             }

         }

         inp.setText(num1+op+num2);

     }

}

}

/*

<applet code = Calculator.class width=600 height=600>

</applet>

*/

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.

 Advantages of an Applet:

  1. Since an applet is a short Java application, it is a platform-neutral code that can run on any browser.
  2. On client-side computers, applets may execute various minor activities. They can play music, display images, receive user inputs, mouse clicks, and even keystrokes, among other things.
  3. Applets are client-side visuals that are distinct and independent of the client-side platform.
  4. Although applets are less in size than stand-alone applications, their ability to be shared across a network makes them more usable.
  5. Since applets run on client browsers, they may import graphics and audio snippets depending on URLs.
  6. Due to their access to resources, applets are highly secure.
  7. Applets are safe and protected to use since they cannot modify the local system.
  8. Applets operating via Intranets may perform multiple tiny activities such as login, inventory checking, and task scheduling.

 Limitations of an Applet:

 Since applets are received from distant workstations and might affect client-side machines, they are subject to several security constraints. Here are a few examples:

  1. If someone is running an applet from an unreliable supplier, security is critical.
  2. Any programme on the local system cannot be started or modified by the applet.
  3. Applets do not have access to client-side resources such as files, operating systems, and so on.
  4. Applets may be granted specific rights. They must be labelled as trustworthy applets and registered with APS (Applet Security Manager).
  5. When it comes to interacting, Applet has few constraints. It can only communicate with the machine that loaded it.
  6. Applets are unable to interact with native methods.
  7. The only information an applet may collect about a client machine is its name, java edition, operating system, version, and so on.
  8. Applets are notoriously sluggish to execute because all of the classes and resources they require must be sent across the network.

 Life Cycle of an Applet:

 There are five techniques in the applet life cycle. Init(), start(), paint(), stop(), and destroy() are the methods.

init(): The init() function is used to launch an applet. It is only called once throughout the startup process. The internet browser generates objects that have already been initialised. This technique is equivalent to the Thread class’s condition of being born.

start(): The start() function is used to initiate the execution of the applet. It is invoked after the init() function has been called. Whenever the browser loads or refreshes, it is called. The start() function is dormant until the init() method is called. This function is comparable to the Thread class’s start state.

 paint(): The paint() function is used to paint any form such as a square, rectangle, trapezium, eclipse, etc. ClassGraphics is a parameter of the paint() function. This Graphics class provides painting functionality in the form of an applet. This technique is comparable to the Thread class’s runnable state.

 stop(): The stop() function is used to terminate the applet. Whenever the browser is closed, minimised, or the application crashes unexpectedly, it is called. After using the stop() function, we may use the start() method. This approach is mainly concerned with code cleanup. This function can be compared to the Thread class’s state of being blocked

 destroy(): When we have finished our applet work, we utilise the destroy() function to kill the application. It will only be used once. We can no longer start() the applet once it has been destroyed. This function is analogous to the Thread class’s dead state paint() method, which may be used to paint any shape, such as a square, rectangle, trapezium, eclipse, etc. The paint() method takes an argument called ClassGraphics. This Graphics class provides painting functionality in the form of an applet.

 Using an HTML file, implement the Applet Life Cycle in the following way:

Coverage of AWS, Microsoft Azure and GCP services

Certification8 Months

Job-Linked Program

Bootcamp36 Weeks
What is Applet in Java

 Wondering where to learn Java?

 upGrad’s Executive PG Program in Software Developmentis where your hunt ends!

 Key Highlights-

  • Top-Notch Faculty Members & Industry Experts
  • Free exclusive access to Data Science and Machine Learning
  • Option for no-cost EMI
  • 10 Programming Languages and Tools

 Conclusion

 Java is a highly significant programming Language that you must know if you are a software enthusiast. A course on this topic will definitely enhance your prospects as a software developer in the long run and open new avenues for a prosperous career.

Frequently Asked Questions (FAQs)

1. What is the purpose of the applet class?

2. How many types of applets are there?

3. What is the difference between applet and application in Java?

Pavan Vadapalli

Pavan Vadapalli

900 articles published

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

View Program

Top Resources

Recommended Programs

upGrad

AWS | upGrad KnowledgeHut

AWS Certified Solutions Architect - Associate Training (SAA-C03)

69 Cloud Lab Simulations

Certification

32-Hr Training by Dustin Brimberry

upGrad KnowledgeHut

upGrad KnowledgeHut

Angular Training

Hone Skills with Live Projects

Certification

13+ Hrs Instructor-Led Sessions

upGrad

upGrad KnowledgeHut

Full Stack Development Bootcamp - Essential

Job-Linked Program

Bootcamp

36 Weeks