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

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » AppletScreenshots 
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.java2java.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, 00this);
  }

  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.java2java.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(300200);
    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 (Stringht.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 streamthrows 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. File Read Applet
40. Applet I18N
41. Image Loader Applet
42. Thread Race Applet
43. Applet: Print from an Applet
44. Calling methods of an Applet from JavaScript code
45. Read an applet parameters
46. Change an applet background color
47. Passing Parameters to Java Applet
48. Display message in browser status bar
49. This applet is a simple button that plays an audio clip when pushed
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.