Icon Demo Applet : 程序 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 程序屏幕截图 
Icon Demo 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.
 */

import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.net.URL;
import java.util.Vector;

import javax.swing.AbstractButton;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;

public class IconDemoApplet extends JApplet implements ActionListener {
  Vector pictures;

  JButton previousButton;

  JButton nextButton;

  JLabel photographLabel;

  JLabel captionLabel;

  JLabel numberLabel;

  int current = 0;

  int widthOfWidest = 0;

  int heightOfTallest = 0;

  String imagedir = null;

  public void init() {
    //Parse the applet parameters
    pictures = parseParameters();

    //If the applet tag doesn't provide an "IMAGE0" parameter,
    //display an error message.
    if (pictures.size() == 0) {
      captionLabel = new JLabel("No images listed in applet tag.");
      captionLabel.setHorizontalAlignment(JLabel.CENTER);
      getContentPane().add(captionLabel);
      return;
    }

    //NOW CREATE THE GUI COMPONENTS

    //A label to identify XX of XX.
    numberLabel = new JLabel("Picture " (current + 1" of "
        + pictures.size());
    numberLabel.setHorizontalAlignment(JLabel.LEFT);
    numberLabel.setBorder(BorderFactory.createEmptyBorder(5055));

    //A label for the caption.
    final Photo first = (Photopictures.firstElement();
    captionLabel = new JLabel(first.caption);
    captionLabel.setHorizontalAlignment(JLabel.CENTER);
    captionLabel.setBorder(BorderFactory.createEmptyBorder(5050));

    //A label for displaying the photographs.
    photographLabel = new JLabel("Loading first image...");
    photographLabel.setHorizontalAlignment(JLabel.CENTER);
    photographLabel.setVerticalAlignment(JLabel.CENTER);
    photographLabel.setVerticalTextPosition(JLabel.CENTER);
    photographLabel.setHorizontalTextPosition(JLabel.CENTER);
    photographLabel.setBorder(BorderFactory.createCompoundBorder(
        BorderFactory.createLoweredBevelBorder(), BorderFactory
            .createEmptyBorder(5555)));
    photographLabel.setBorder(BorderFactory.createCompoundBorder(
        BorderFactory.createEmptyBorder(00100), photographLabel
            .getBorder()));

    //Set the preferred size for the picture,
    //with room for the borders.
    Insets i = photographLabel.getInsets();
    photographLabel.setPreferredSize(new Dimension(widthOfWidest + i.left
        + i.right, heightOfTallest + i.bottom + i.top));

    //Create the next and previous buttons.
    ImageIcon nextIcon = new ImageIcon(getURL(imagedir + "right.gif"));
    ImageIcon dimmedNextIcon = new ImageIcon(getURL(imagedir
        "dimmedRight.gif"));
    ImageIcon previousIcon = new ImageIcon(getURL(imagedir + "left.gif"));
    ImageIcon dimmedPreviousIcon = new ImageIcon(getURL(imagedir
        "dimmedLeft.gif"));

    previousButton = new JButton("Previous Picture", previousIcon);
    previousButton.setDisabledIcon(dimmedPreviousIcon);
    previousButton.setVerticalTextPosition(AbstractButton.CENTER);
    previousButton.setHorizontalTextPosition(AbstractButton.RIGHT);
    previousButton.setMnemonic(KeyEvent.VK_P);
    previousButton.setActionCommand("previous");
    previousButton.addActionListener(this);
    previousButton.setEnabled(false);

    nextButton = new JButton("Next Picture", nextIcon);
    nextButton.setDisabledIcon(dimmedNextIcon);
    nextButton.setVerticalTextPosition(AbstractButton.CENTER);
    nextButton.setHorizontalTextPosition(AbstractButton.LEFT);
    nextButton.setMnemonic(KeyEvent.VK_N);
    nextButton.setActionCommand("next");
    nextButton.addActionListener(this);

    //Lay out the GUI.
    GridBagLayout layout = new GridBagLayout();
    GridBagConstraints c = new GridBagConstraints();

    Container contentPane = getContentPane();
    contentPane.setLayout(layout);

    c.gridwidth = GridBagConstraints.REMAINDER;
    c.fill = GridBagConstraints.HORIZONTAL;
    layout.setConstraints(numberLabel, c);
    contentPane.add(numberLabel);

    layout.setConstraints(captionLabel, c);
    contentPane.add(captionLabel);

    c.gridwidth = GridBagConstraints.REMAINDER;
    c.fill = GridBagConstraints.BOTH;
    layout.setConstraints(photographLabel, c);
    contentPane.add(photographLabel);

    c.gridwidth = GridBagConstraints.RELATIVE;
    c.fill = GridBagConstraints.HORIZONTAL;
    layout.setConstraints(previousButton, c);
    contentPane.add(previousButton);

    c.gridwidth = GridBagConstraints.REMAINDER;
    layout.setConstraints(nextButton, c);
    contentPane.add(nextButton);

    //Start loading the image for the first photograph now.
    //The loadImage method uses a SwingWorker
    //to load the image in a separate thread.
    loadImage(imagedir + first.filename, current);
  }

  //User clicked either the next or the previous button.
  public void actionPerformed(ActionEvent e) {
    //Show loading message.
    photographLabel.setIcon(null);
    photographLabel.setText("Loading image...");

    //Compute index of photograph to view.
    if (e.getActionCommand().equals("next")) {
      current += 1;
      if (!previousButton.isEnabled())
        previousButton.setEnabled(true);
      if (current == pictures.size() 1)
        nextButton.setEnabled(false);
    else {
      current -= 1;
      if (!nextButton.isEnabled())
        nextButton.setEnabled(true);
      if (current == 0)
        previousButton.setEnabled(false);
    }

    //Get the photo object.
    Photo pic = (Photopictures.elementAt(current);

    //Update the caption and number labels.
    captionLabel.setText(pic.caption);
    numberLabel.setText("Picture " (current + 1" of "
        + pictures.size());

    //Update the photograph.
    ImageIcon icon = pic.getIcon();
    if (icon == null) { //haven't viewed this photo before
      loadImage(imagedir + pic.filename, current);
    else {
      updatePhotograph(current, pic);
    }
  }

  //Must be invoked from the event-dispatching thread.
  private void updatePhotograph(int index, Photo pic) {
    ImageIcon icon = pic.getIcon();

    photographLabel.setToolTipText(pic.filename + ": "
        + icon.getIconWidth() " X " + icon.getIconHeight());
    photographLabel.setIcon(icon);
    photographLabel.setText("");
  }

  //Load an image in a separate thread.
  private void loadImage(final String imagePath, final int index) {
    final SwingWorker worker = new SwingWorker() {
      ImageIcon icon = null;

      public Object construct() {
        icon = new ImageIcon(getURL(imagePath));
        return icon; //return value not used by this program
      }

      //Runs on the event-dispatching thread.
      public void finished() {
        Photo pic = (Photopictures.elementAt(index);
        pic.setIcon(icon);
        if (index == current)
          updatePhotograph(index, pic);
      }
    };
    worker.start();
  }

  protected URL getURL(String filename) {
    URL codeBase = this.getCodeBase();
    URL url = null;

    try {
      url = new URL(codeBase, filename);
    catch (java.net.MalformedURLException e) {
      System.out.println("Couldn't create image: "
          "badly specified URL");
      return null;
    }

    return url;
  }

  protected Vector parseParameters() {
    Vector pix = new Vector(10)//start with 10, grows if necessary
    int i = 0//parameters index must start at 0
    String paramName = "IMAGE" + i;
    String paramValue;

    while ((paramValue = getParameter(paramName)) != null) {
      Photo pic = new Photo(paramValue, getCaption(i), getWidth(i),
          getHeight(i));
      pix.addElement(pic);
      i++;
      paramName = "IMAGE" + i;
    }

    //Get the name of the directory that contains the image files.
    imagedir = getParameter("IMAGEDIR");
    if (imagedir != null)
      imagedir = imagedir + "/";

    return pix;
  }

  protected String getCaption(int i) {
    return getParameter("CAPTION" + i);
  }

  protected int getWidth(int i) {
    int width = 0;
    String widthString = getParameter("WIDTH" + i);
    if (widthString != null) {
      try {
        width = Integer.parseInt(widthString);
      catch (NumberFormatException e) {
        width = 0;
      }
    else {
      width = 0;
    }
    if (width > widthOfWidest)
      widthOfWidest = width;
    return width;
  }

  protected int getHeight(int i) {
    int height = 0;
    String heightString = getParameter("HEIGHT" + i);
    if (heightString != null) {
      try {
        height = Integer.parseInt(heightString);
      catch (NumberFormatException e) {
        height = 0;
      }
    else {
      height = 0;
    }
    if (height > heightOfTallest)
      heightOfTallest = height;
    return height;
  }

  public String[][] getParameterInfo() {
    String[][] info = {
        "IMAGEDIR""string""directory containing image files" },
        "IMAGEN""string""filename" },
        "CAPTIONN""string""caption" },
        "WIDTHN""integer""width of image" },
        "HEIGHTN""integer""height of image" }};
    return info;
  }
}

class Photo {
  public String filename;

  public String caption;

  public int width;

  public int height;

  public ImageIcon icon;

  public Photo(String filename, String caption, int w, int h) {
    this.filename = filename;
    if (caption == null)
      this.caption = filename;
    else
      this.caption = caption;
    width = w;
    height = h;
    icon = null;
  }

  public void setIcon(ImageIcon i) {
    icon = i;
  }

  public ImageIcon getIcon() {
    return icon;
  }
}

/**
 * This is the 3rd version of SwingWorker (also known as SwingWorker 3), an
 * abstract class that you subclass to perform GUI-related work in a dedicated
 * thread. For instructions on and examples of using this class, see:
 
 * http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html
 
 * Note that the API changed slightly in the 3rd version: You must now invoke
 * start() on the SwingWorker after creating it.
 */

abstract class SwingWorker {
  private Object value; // see getValue(), setValue()

  /**
   * Class to maintain reference to current worker thread under separate
   * synchronization control.
   */
  private static class ThreadVar {
    private Thread thread;

    ThreadVar(Thread t) {
      thread = t;
    }

    synchronized Thread get() {
      return thread;
    }

    synchronized void clear() {
      thread = null;
    }
  }

  private ThreadVar threadVar;

  /**
   * Get the value produced by the worker thread, or null if it hasn't been
   * constructed yet.
   */
  protected synchronized Object getValue() {
    return value;
  }

  /**
   * Set the value produced by worker thread
   */
  private synchronized void setValue(Object x) {
    value = x;
  }

  /**
   * Compute the value to be returned by the <code>get</code> method.
   */
  public abstract Object construct();

  /**
   * Called on the event dispatching thread (not on the worker thread) after
   * the <code>construct</code> method has returned.
   */
  public void finished() {
  }

  /**
   * A new method that interrupts the worker thread. Call this method to force
   * the worker to stop what it's doing.
   */
  public void interrupt() {
    Thread t = threadVar.get();
    if (t != null) {
      t.interrupt();
    }
    threadVar.clear();
  }

  /**
   * Return the value created by the <code>construct</code> method. Returns
   * null if either the constructing thread or the current thread was
   * interrupted before a value was produced.
   
   @return the value created by the <code>construct</code> method
   */
  public Object get() {
    while (true) {
      Thread t = threadVar.get();
      if (t == null) {
        return getValue();
      }
      try {
        t.join();
      catch (InterruptedException e) {
        Thread.currentThread().interrupt()// propagate
        return null;
      }
    }
  }

  /**
   * Start a thread that will call the <code>construct</code> method and
   * then exit.
   */
  public SwingWorker() {
    final Runnable doFinished = new Runnable() {
      public void run() {
        finished();
      }
    };

    Runnable doConstruct = new Runnable() {
      public void run() {
        try {
          setValue(construct());
        finally {
          threadVar.clear();
        }

        SwingUtilities.invokeLater(doFinished);
      }
    };

    Thread t = new Thread(doConstruct);
    threadVar = new ThreadVar(t);
  }

  /**
   * Start the worker thread.
   */
  public void start() {
    Thread t = threadVar.get();
    if (t != null) {
      t.start();
    }
  }
}
           
         
  
Related examples in the same category
1. 套接字程序
2. Applet Socket Quote
3. Applet的打印
4. Applet的系统属性
5. Applet的声音
6. 查看文件
7. 通信应用程序(互相沟通)
8. Get Applets
9. JDBC的程序
10. 应用程序和一个applet应用程序和一个applet
11. 应用程序及图形界面组件应用程序及图形界面组件
12. Jbuttons中图标行为Jbuttons中图标行为
13. 签名Applet
14. 负载资源的程序
15. 涂抹程序涂抹程序
16. 切换按钮切换按钮
17. 弹跳圈弹跳圈
18. applet的菜单栏演示
19. 时钟演示程序时钟演示程序
20. Applet的事件测试Applet的事件测试
21. Applet的参数
22. 第一个程序
23. AppletViewer -一个简单的Applet的浏览器程序
24. 一个简单的贷款计算器程序一个简单的贷款计算器程序
25. URLButton -一个按钮类对象,跳跃到网址
26. 在一个应用程序的HTML文件中获取名单标签
27. 演示程序方法
28. 表明getParameterInfo ( )和getAppletInfo ( )
29. 散步示范文本
30. Java小程序可以运行的CGI的(对某些浏览器)
31. 演示选择程序
32. 演示程序:连接到遗留系统
33. ShowDocApplet :尝试showDocument ( )
34. 书签
35. Java波程序演示
36. Slide Puzzle
37. A class to allow use of the ncsa ISMAP format in java applets
38. 文件读取程序
39. Applet I18N
40. 图像装载程序
41. Thread Race Applet
42. 程序:从一个applet打印
43. 从JavaScript代码呼唤方法一个applet
44. 读取一个applet参数
45. 改变一个applet的背景颜色
46. 参数传递到Java小程序
47. 显示浏览器状态栏中的信息
48. 您自己的应用程序运行环境
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.