What is Applet in Java? How to Create & Run?
Updated on Nov 30, 2022 | 7 min read | 6.0k views
Share:
For working professionals
For fresh graduates
More
Updated on Nov 30, 2022 | 7 min read | 6.0k views
Share:
Table of Contents
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.
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.
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:
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.
Wondering where to learn Java?
upGrad’s Executive PG Program in Software Developmentis where your hunt ends!
Key Highlights-
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.
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