Basic HTML version of Foils prepared Oct 1 98

Foil 10 The Simplest Java Applet: Hello, World!

From Java Tutorial 98- 1: Introduction to Java Language and Applets CPS606 -- Fall Semester. by Geoffrey C. Fox, Nancy McCracken

The HelloWorld Applet for Foil 10
Java applets are part of the class hierarchy that can call methods to display on a screen (within the browser window). One way to draw on the screen is to call the method drawString from the standard method paint.
import java.awt.Graphics;
public class HelloApplet extends java.applet.Applet
{ public void paint (Graphics g)
{ g.drawString("Hello World!", 5, 25);
}
}
The import statement (similar to an include) allows the use of methods from the Graphics class .
The paint method displays a graphics object on the screen - one of the standard methods that takes the place of main for applets.
Puts this as a subclass of Applet.



© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sat Nov 28 1998