Download // An Applet skeleton

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts
no text concepts found
Transcript
// An Applet skeleton.
import java.awt.*;
import javax.swing.*;
/*
<applet code="AppletSkel" width=300 height=100>
</applet>
*/
public class AppletSkel extends JApplet {
// Called first.
public void init() {
// initialization
}
/* Called second, after init().
the applet is restarted. */
public void start() {
// start or resume execution
}
Also called whenever
// Called when the applet is stopped.
public void stop() {
// suspends execution
}
/* Called when applet is terminated.
method executed. */
public void destroy() {
// perform shutdown activities
}
This is the last
// Called when an applet's window must be restored.
public void paint(Graphics g) {
// redisplay contents of window
}
}
Applet Initialization and Termination
It is important to understand the order in which the various methods shown in the
skeleton are called. When an applet begins, the AWT calls the following methods, in
this sequence:
1. init( )
2. start( )
3. paint( )
When an applet is terminated, the following sequence of method calls takes place:
1. stop( )
2. destroy( )
Let’s look more closely at these methods.
init( )
The init( ) method is the first method to be called. This is where you should initialize
variables. This method is called only once during the run time of your applet.
start( )
The start( ) method is called after init( ). It is also called to restart an applet after it has
been stopped. Whereas init( ) is called once—the first time an applet is loaded—start( )
is called each time an applet’s HTML document is displayed onscreen. So, if a user
leaves a web page and comes back, the applet resumes execution at start( ).
paint( )
The paint( ) method is called each time your applet’s output must be redrawn. This
situation can occur for several reasons. For example, the window in which the applet is
running may be overwritten by another window and then uncovered. Or the applet
window may be minimized and then restored. paint( ) is also called when the applet
begins execution. Whatever the cause, whenever the applet must redraw its output,
paint( ) is called. The paint( ) method has one parameter of type Graphics. This
parameter will contain the graphics context, which describes the graphics environment
in which the applet is running. This context is used whenever output to the applet
is required.
stop( )
The stop( ) method is called when a web browser leaves the HTML document
containing the applet—when it goes to another page, for example. When stop( ) is
called, the applet is probably running. You should use stop( ) to suspend threads that
don’t need to run when the applet is not visible. You can restart them when start( ) is
called if the user returns to the page.
destroy( )
The destroy( ) method is called when the environment determines that your applet
needs to be removed completely from memory. At this point, you should free up any
resources the applet may be using (e.g. to kill any threads created in the init ()). The
stop( ) method is always called before destroy().
THE
The HTML APPLET Tag
The APPLET tag is used to start an applet from both an HTML document and from an
applet viewer.
An applet viewer will execute each APPLET tag that it finds in a separate window,
while web browsers like Netscape Navigator, Internet Explorer, and HotJava will allow
many applets on a single page.
The syntax for the standard APPLET tag is shown here. Bracketed items
are optional.
< APPLET
[CODEBASE = codebaseURL]
CODE = appletFile
[ALT = alternateText]
[NAME = appletInstanceName]
WIDTH = pixels HEIGHT = pixels
[ALIGN = alignment]
[VSPACE = pixels] [HSPACE = pixels]
>
[< PARAM NAME = AttributeName VALUE = AttributeValue>]
[< PARAM NAME = AttributeName2 VALUE = AttributeValue>]
...
[HTML Displayed in the absence of Java]
</APPLET>
Let’s take a look at each part now.
CODEBASE CODEBASE is an optional attribute that specifies the base URL of the
applet code, which is the directory that will be searched for the applet’s executable
class file (specified by the CODE tag). The HTML document’s URL directory is used as
the CODEBASE if this attribute is not specified. The CODEBASE does not have to be
on the host from which the HTML document was read.
CODE CODE is a required attribute that gives the name of the file containing your
applet’s compiled .class file. This file is relative to the code base URL of the applet,
which is the directory that the HTML file was in or the directory indicated by
CODEBASE if set.
ALT The ALT tag is an optional attribute used to specify a short text message that
should be displayed if the browser understands the APPLET tag but can’t currently
run Java applets. This is distinct from the alternate HTML you provide for browsers
that don’t support applets.
THE
JAVA
WIDTH AND HEIGHT WIDTH and HEIGHT are required attributes that give the
size (in pixels) of the applet display area.
ALIGN ALIGN is an optional attribute that specifies the alignment of the applet.
This attribute is treated the same as the HTML IMG tag with these possible values:
LEFT, RIGHT, TOP, BOTTOM, MIDDLE, BASELINE, TEXTTOP, ABSMIDDLE,
and ABSBOTTOM.
VSPACE AND HSPACE These attributes are optional. VSPACE specifies the space,
in pixels, above and below the applet. HSPACE specifies the space, in pixels, on each
side of the applet. They’re treated the same as the IMG tag’s VSPACE and HSPACE
attributes.
PARAM NAME AND VALUE The PARAM tag allows you to specify appletspecific
arguments in an HTML page. Applets access their attributes with the getParameter( )
method.
import java.awt.*;
import java.util.*;
public class Ouch extends java.applet.Applet {
int debt = 683;
int totalTime = 1;
public void paint(Graphics screen) {
screen.drawString(totalTime + " second's worth of debt
is $" + (debt * totalTime), 5, 30);
for (int i = 0; i < 250000000; i++);
totalTime++;
repaint();//calls paint() again
}
}
import java.awt.*;
import javax.swing.*;
//Also watch command line for messages
public class Simple extends JApplet {
StringBuffer buffer;
public void init() {
buffer = new StringBuffer();
addItem("initializing... ");
}
public void start() {
addItem("starting... ");
}
public void stop() {
addItem("stopping... ");
}
public void destroy() {
addItem("preparing for unloading...");
}
void addItem(String newWord) {
System.out.println(newWord);
buffer.append(newWord);
repaint();
}
public void paint(Graphics g) {
//Draw the current string
g.drawString(buffer.toString(), 5, 15);}}
Initially
After a minimize and maximize
The following is from:
http://java.sun.com/docs/books/tutorial/applet/practical/security.html
Security Restrictions
One of the main goals of the Java environment is to make browser users feel secure
running any applet. This page tells you about the current applet security restrictions, from
the point of view of how they affect applet design. For more information on applet
security, you should refer to Marianne Mueller's excellent document:
Frequently Asked Questions - Applet Security
Each applet viewer has a SecurityManager object that checks for applet security
violations. When a SecurityManager detects a violation, it creates and throws a
SecurityException object. Generally, the SecurityException constructor prints a
warning message to the standard output. An applet can catch SecurityExceptions and
react appropriately, such as by reassuring the user and by resorting to a "safer" (but less
ideal) way of accomplishing the task.
To learn about security managers and the kinds of security violations they can check for,
see Introducing the Security Manager .
Existing applet viewers (including Web browsers) impose the following restrictions:
Applets cannot load libraries or define native methods.
Applets can use only their own Java code and the Java API the applet
viewer provides. At a minimum, each applet viewer must provide access
to the API defined in the java.* packages.
An applet cannot ordinarily read or write files on the host that is executing it.
The JDK Applet Viewer actually permits some user-specified exceptions
to this rule, but Netscape Navigator 2.0, for example, does not. Applets in
any applet viewer can read files specified with full URLs, instead of by a
filename. A workaround for not being to write files is to have the applet
forward data to an application on the host the applet came from. This
application can write the data files on its own host. See Working with a
Server-Side Application for more examples.
An applet cannot make network connections except to the host that it came from.
The workaround for this restriction is to have the applet work with an
application on the host it came from. The application can make its own
connections anywhere on the network. See Using a Server to Work
Around Security Restrictions for an example.
An applet cannot start any program on the host that is executing it.
Again, an applet can work with a server-side application instead.
An applet cannot read certain system properties.
See Reading System Properties for more information.
Windows that an applet brings up look different than windows that an application
brings up.
Applet windows have some warning text and either a colored bar or an image. This helps
the user distinguish applet windows from those of trusted applications.