JVM Languages
persist.txt
Associated article: Creating Signed, Persistent Java Applets
Tags: .NET Security JVM Languages
Published source code accompanying the article by Paul Brigner in which he examines the facilities that both Netscape and Microsoft have facilities for signed, persistent applet deployment, thereby extending the Java security framework. Also see PERSIST.ZIP.
Creating Signed, Persistent Java Applets
by Paul Brigner
Listing One
import java.awt.*;
import java.applet.*;
import java.io.*;
public class MyApplet extends Applet implements
java.awt.event.ActionListener
{
java.awt.Button button1;
java.awt.TextArea textArea1;
public void init()
{
...


