Applet: Print from an Applet : Applet « Swing JFC « Java






Applet: Print from an Applet

   
/* From http://java.sun.com/docs/books/tutorial/index.html */
/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */
/*
 * 1.1 version.
 */

import java.applet.Applet;
import java.awt.Graphics;
import java.awt.TextArea;

public class PrintThread extends Applet {

  java.awt.TextArea display = new java.awt.TextArea(1, 80);

  int paintCount = 0;

  String newline;

  public void init() {
    //Create the text area and make it uneditable.
    display = new TextArea(1, 80);
    display.setEditable(false);

    //Set the layout manager so that the text area
    //will be as wide as possible.
    setLayout(new java.awt.GridLayout(1, 0));

    //Add the text area to the applet.
    add(display);

    //Find the platform-dependent newline character.
    newline = System.getProperty("line.separator");

    addItem("init: " + threadInfo(Thread.currentThread()));
  }

  public void start() {
    addItem("start: " + threadInfo(Thread.currentThread()));
  }

  public void stop() {
    addItem("stop: " + threadInfo(Thread.currentThread()));
  }

  public void destroy() {
    addItem("destroy: " + threadInfo(Thread.currentThread()));
    //removeAll(); //XXXAppletViewer allows 2 init calls.
  }

  String threadInfo(Thread t) {
    return "thread=" + t.getName() + ", " + "thread group="
        + t.getThreadGroup().getName();
  }

  void addItem(String newWord) {
    System.out.println(newWord);
    display.append(newWord + newline);
    display.repaint();
    //A hack to get the applet update() method called
    //occasionally:
    if (++paintCount % 4 == 0) {
      repaint();
    }
  }

  public void update(Graphics g) {
    addItem("update: " + threadInfo(Thread.currentThread()));
    super.update(g);
  }
}

/*
<html>
<title>
1.1 PrintThread
</title>
<body>
<h1>
1.1 PrintThread (x2)
</h1>

    <applet code="PrintThread.class" width=450 height=100>
    </applet>

    <applet code="PrintThread.class" width=450 height=100>
    </applet>

</body>
</html>

*/
           
         
    
    
  








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.Calling methods of an Applet from JavaScript code
42.Read an applet parameters
43.Change an applet background color
44.Passing Parameters to Java Applet
45.Display message in browser status bar
46.Your own Applet runtime environment
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