Your own Applet runtime environment : Applet « Swing JFC « Java






Your own Applet runtime environment

   
import java.applet.Applet;
import java.applet.AppletContext;
import java.applet.AppletStub;
import java.applet.AudioClip;
import java.awt.Button;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Panel;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Iterator;

public class MainClass extends Applet implements ActionListener {
  static MainClass myApplet;

  static MyStub myStub;

  Image im;

  public void init() {
    System.out.println("Code base = " + getCodeBase());
    System.out.println("Document base = " + getDocumentBase());

    System.out.println("\ninit () called");
    System.out.println("isActive () returns " + isActive());

    Button b = new Button("Visit www.java2s.com");
    b.addActionListener(this);
    add(b);

    b = new Button("Audio");
    b.addActionListener(this);
    add(b);

    String imageName = getParameter("image");

    if (imageName != null)
      im = getImage(getCodeBase(), imageName);
  }

  public void start() {
    System.out.println("start () called");
    System.out.println("isActive () returns " + isActive());
  }

  public void paint(Graphics g) {
    if (im != null)
      g.drawImage(im, 0, 0, this);
  }

  public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Audio")) {
      String soundName = getParameter("audio");

      if (soundName != null) {
        AudioClip ac = getAudioClip(getDocumentBase(), soundName);

        ac.play();
      }

      return;
    }

    try {
      URL u = new URL("http://www.java2s.com");
      getAppletContext().showDocument(u);
    } catch (MalformedURLException exc) {
      System.out.println(e);
    }
  }

  public void stop() {
    System.out.println("stop () called");
    System.out.println("isActive () returns " + isActive());
  }

  public void destroy() {
    System.out.println("destroy () called");
    System.out.println("isActive () returns " + isActive());
  }

  public static void main(String[] args) {
    Frame frame = new Frame("AppletAndApp as an Application");
    myApplet = new MainClass();

    frame.add(new Panel().add(myApplet));

    frame.addNotify();

    myApplet.setStub(myStub = new MyStub(args));
    myApplet.init();

    frame.setSize(300, 200);
    frame.setVisible(true);

    myStub.setActive(true);
    myApplet.start();

    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent w) {
        myStub.setActive(false);
        myApplet.stop();
        myApplet.destroy();
        System.exit(0);
      }
    });
  }
}

class MyStub implements AppletStub {
  private boolean active = false;

  private Hashtable ht = new Hashtable();

  private MyContext context;

  MyStub(String[] args) {
    context = new MyContext(); 
    if ((args.length & 1) != 0)
      return;

    for (int i = 0; i < args.length; i += 2)
      ht.put(args[i], args[i + 1]);
  }

  public boolean isActive() {
    return active;
  }

  public URL getDocumentBase() {
    URL u = null;

    try {
      u = new URL("file:/C:./x.html");
    } catch (MalformedURLException e) {
    }

    return u;
  }
  public URL getCodeBase() {
    URL u = null;
    try {
      u = new URL("file:/C:./");
    } catch (MalformedURLException e) {
    }

    return u;
  }

  public String getParameter(String name) {
    return (String) ht.get(name);
  }

  public AppletContext getAppletContext() {
    return context;
  }

  public void appletResize(int width, int height) {
  }

  public void setActive(boolean active) {
    this.active = active;
  }
}

class MyContext implements AppletContext {
  public AudioClip getAudioClip(URL url) {
    return Applet.newAudioClip(url);
  }
  public Image getImage(URL url) {
    Toolkit tk = Toolkit.getDefaultToolkit();
    return tk.getImage(url);
  }

  public Applet getApplet(String name) {
    return null;
  }

  public Enumeration getApplets() {
    return null;
  }

  public void showDocument(URL url) {
    System.out.println("Showing document " + url);
  }

  public void showDocument(URL url, String frame) {
    try {
      showDocument(new URL(url.toString() + frame));
    } catch (MalformedURLException e) {
    }
  }

  public void showStatus(String message) {
    System.out.println(message);
  }

  public void setStream(String key, InputStream stream) throws IOException {
  }

  public InputStream getStream(String key) {
    return null;
  }

  public Iterator<String> getStreamKeys() {
    return null;
  }
}

           
         
    
    
  








Related examples in the same category

1.Icon Demo Applet
2.Socket Applet
3.Applet Socket Quote
4.Applet Print
5.Applet System Properties
6.Applet Sound
7.Show Document
8.Applet communication (talk to each other)
9.Get Applets
10.JDBC applet
11.An application and an appletAn application and an applet
12.Applet and Swing ComponentsApplet and Swing Components
13.Icon behavior in JbuttonsIcon behavior in Jbuttons
14.Signed Applet
15.Load resource in Applet
16.Scribble AppletScribble Applet
17.Toggle buttonToggle button
18.Bouncing CircleBouncing Circle
19.Applet Menu Bar Demo
20.Applet clock demoApplet clock demo
21.Applet event testerApplet event tester
22.Applet with parameters
23.First applet
24.AppletViewer - a simple Applet Viewer program
25.A simple loan calculator appletA simple loan calculator applet
26.URLButton -- a Button-like object that jumps to a URL
27.Get list of APPLET tags in one HTML file
28.Demonstration of Applet Methods
29.Demonstrates getParameterInfo() and getAppletInfo()
30.Walking Text Demo
31.Java Applets Can Run CGI's (on some browsers)
32.Demo Choice Applet
33.Demo Applet: Connect to Legacy System
34.ShowDocApplet: try out showDocument()
35.Bookmarks
36.Java Wave Applet Demo
37.Slide Puzzle
38.A class to allow use of the ncsa ISMAP format in java applets
39.Image Loader Applet
40.Thread Race Applet
41.Applet: Print from an Applet
42.Calling methods of an Applet from JavaScript code
43.Read an applet parameters
44.Change an applet background color
45.Passing Parameters to Java Applet
46.Display message in browser status bar
47.This applet is a simple button that plays an audio clip when pushed
48.EventQueue.invokeLater and JApplet
49.An applet component that draws a bar chart
50.This applet displays a greeting from the authors