Java Program to Create a Basic Applet

This is a Java Program to Create a Basic Applet

Problem Description

We have to write a program in Java such that it creates a basic applet with some text written on the applet.

Expected Input and Output

For creating a basic applet, we can have the following set of input and output.

To View the Applet :

When the program is executed,
it is expected that an applet is created with "Hello World" written.
Problem Solution

1. To create an applet inherit the Applet class.
2. Write text on the frame, using drawString method of Graphics class.

advertisement
Program/Source Code

Here is source code of the Java Program to create a basic applet. The program is successfully compiled and tested using javac compiler on Fedora 30. The program output is also shown below.

  1. /*Java Program to Create a Basic Applet*/
  2. import java.applet.*;
  3. import java.awt.*;
  4. public class Basic_Applet extends Applet
  5. {
  6.     //Function to initialize the applet
  7.     public void init()
  8.     {
  9. 	setBackground(Color.white);
  10. 	setLayout(new FlowLayout(FlowLayout.CENTER));
  11.     }
  12.     //Function to draw the string
  13.     public void paint(Graphics g)
  14.     {
  15. 	g.drawString("Hello World",100,200);
  16.     }
  17. }
  18. /*
  19. <applet code=Basic_Applet.class width=400 height=400>
  20. </applet>
  21. */

To compile and run the program use the following commands :

⚡ Hurry! Secure Your Free Cyber Security Certification - January 2026
>>>javac Basic_Applet.java
>>>appletviewer Basic_Applet.java
Program Explanation

1. To create an applet, it is needed to inherit the Applet class.
2. The method public void init() is defined in the Applet class and it is used to initialize the applet.
3. The method drawString(String,int x,int y) draws a string starting from the (x,y) co-ordinate.

Runtime Test Cases

Here’s the run time test cases for creating a basic applet for different input cases.

advertisement

Test case 1 – To View the Applet.
java-program-basic-applet

Sanfoundry Global Education & Learning Series – Java Programs.

👉 For weekly programming practice and certification updates, join Sanfoundry’s official WhatsApp & Telegram channels

advertisement
Manish Bhojasia – Founder & CTO at Sanfoundry

I’m Manish, Founder & CTO at Sanfoundry, with 25+ years of experience across Linux systems, SAN technologies, advanced C programming, and building large-scale, performance-driven learning and certification platforms focused on clear skill validation.

LinkedIn  ·  YouTube MasterClass  ·  Telegram Classes  ·  Career Guidance & Conversations