Applets and
Graphics
There are three kinds
of Java programs:
Console applications
Graphical applications
Applets
Console applications
run in a single, plain-
looking window.
Graphical applications
use windows filled
with user interface
components such as
buttons, text input
fields, menu, and so
on.
Applets are similar to
graphical applications,
but they run inside a
web browser.
Applets
To display an applet,
we need to
Write and compile to
generate the applet
code
Write an HTML file to
tell the browser how
to find the code for the
applet
An example of an
applet that draw
rectangles
First, write Java
program and compile it
to generate
“Rect.class”
Then, create an HTML
file and save it as
“Rect.html”
Finally, use
appletviewer to run
the HTML file that
contains the applet
A Simple Java Applet
// Example 1:
HelloApplet
import
java.applet.Applet;
import
java.awt.Graphics;
public class
HelloApplet extends
Applet {
public void paint
(Graphics g) {
g.drawString(“Hello !”,
25, 25);
}
}
How to Compile and
Run a Java Applet
To Compile
c:> javac HelloApplet.java
To Run an applet, we
need HelloApplet.html
No comments:
Post a Comment