0% found this document useful (0 votes)
16 views1 page

Java Applet Basics: Simple Message Display

The document outlines a Java applet program that displays a simple message, 'Welcome to applet', in the center of the screen. It introduces concepts related to Java Applets, AWT, and Swing. The program includes the necessary code and a comment on how to embed the applet in an HTML page.

Uploaded by

quetiepie7
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

Java Applet Basics: Simple Message Display

The document outlines a Java applet program that displays a simple message, 'Welcome to applet', in the center of the screen. It introduces concepts related to Java Applets, AWT, and Swing. The program includes the necessary code and a comment on how to embed the applet in an HTML page.

Uploaded by

quetiepie7
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

OOP with Java Lab /21CSL35

PROGRAM :12
12. A. Develop an applet that displays a simple message in center of the screen.

Aim: Introduce java Applet, awt, swings.

PROGRAM:

import [Link];
import [Link];
/*
<applet code="[Link]" width="300" height="300">
</applet>
*/
public class AppletP extends Applet
{
public void paint(Graphics g)
{
[Link]("Welcome to applet",100,150);
}
}

OUTPUT:

Prof. Imran Ulla Khan, Dept. of CSE,SKIT 2022-23

You might also like