Displaying Numerical values in Applet
In Applet, we can display numerical values by first converting them into strings and then using the drawString() method of Graphics class. We can do this easily by calling the valueOf() method of String class.
import java.awt.*; import java.applet.*; public class temp extends Applet { public void paint (Graphics g) { int x=10; int y=25; int add=x+y; String s="add:"+String.valueOf(add); g.drawString(s, 100, 100); } }
<html> <head> </head> <body> <applet code = "temp.class" width = "600" height = "400"></applet> </body> </html>
Recommended Posts:
Advanced Java
1. Difference between Local Applet and Remote Applet
2. Applet Life Cycle in Java
3. Difference Between Applet and Application
4. Creating an Executable Applet in Java
5. Displaying Numerical values in Applet
6. An Applet Program to Add Two Numbers
7. Event Handling in Applet
8. AWT Classes in Java
9. Draw a line and rectangle in Java Applet
10. Draw Circles and Ellipses in Java Applet
11. Draw Arc in Java Applet
12. Develop an Applet for Drawing a Human Face
13. Draw a Polygon in Java Applet
14. Draw Line Graph in Java Applet
15. Java Applet Program to Draw National Flag
16. Demonstrate to Draw Bar Charts in Java