Write an applet that displays a simple message
- import java.awt*;
- import java.applet.*;
- Create applet frame in under comment
- /*<applet code=weeka height=400 width=400> </applet>*/
- Create Class Weeka extends Applet
- Setforeground(Color.yellow)
- public static void paint(Graphics g)
- g.drawString(“Hellow World”,size of text x, size y)
Aim:
To Develop an applet that displays a simple message.
In this example, we are using a function named g.drawString () which is a method of Graphics class, here g is an object of Graphics class.drawString () is taking three parameters string to display and x, y coordinates.
Source Code To print Simple Message using applet
/* Develop an applet that displays a simple message( information ) */
import java.awt.*;
import java.applet.*;
/*<applet code=weeka height=400 width=400>
</applet> */
class weeka extends Applet
{
public static void init()
{
setForeground(Color.yellow);
}
public static void paint(Graphics g)
{
g.drawString(" Hello World ",80,40);
}
}
Expected Output:
- A simple java applet program to display a text
- java applet program to display a simple message
- Java applet program to display text
- Write a java applet program to print some text
- Write a program using the label to display the message welcome to java
develop a program using the label to display message welcome to java - How to run applet program in java
- Algorithm for applet program
- write an applet to display a simple message on a colored background
Recommended Post:
- How to compare dates in java|algorithm with source code
- Java roll dice 10000 times with algorithm and source code
- Write a Java program that displays the number of characters, lines, and words in a text
- Write a Java program that reads a file and displays the file on the screen with a line number before each line
- Write a Java program that reads a file name from the user, then displays information about whether the file exists, readable, writable, type of file, and the length of the file in bytes
- Java program to make frequency count of vowels, consonants, special symbols, digits, words in a given text
- Write a Java program for sorting a given list of names in ascending order
- Write a java program to Checks whether a given string is a palindrome or not
- Write a java program to perform multiplication of two matrices
- write a java program that prints the Fibonacci series for a given number.
- Write a Java program that finds the factorial of a number
- Write a Java program that finds prime numbers between 1 to n
- Write a Java program that prints all real and imaginary solutions to the quadratic equation
- Odd and Even number in java | Algorithm
- Even number in java | algorithm with source code
- Java greater number using a loop
- Java Area of Rectangle
- What is a polygon? | Area of Triangle in java
- To calculate the Area of Circle in the java program
- Java Addition through user input
- Addition program in java with source code
Find the solution to the salesforce Question and many more