ProgressMonitor类 : 进度监视器 « Swing « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » Swing » 进度监视器 
14. 110. 1. ProgressMonitor类

The ProgressMonitor class is used to report on the status of a time-consuming task.

Creating a ProgressMonitor

public ProgressMonitor(Component parentComponent, Object message, String note, int minimum, int maximum)
ProgressMonitor monitor = new ProgressMonitor(parent, "Loading Progress""Getting Started..."0200);
monitor.setNote("Loaded " + progress + " files");

The millisToDecideToPopup property represents the number of milliseconds that the monitor waits before deciding if it needs to display the pop-up window.

ProgressMonitor类
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class SampleProgress {
  static ProgressMonitor monitor;

  static int progress;

  static Timer timer;

  public static void main(String args[]) {
    JFrame frame = new JFrame("ProgressMonitor Sample");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLayout(new GridLayout(01));

    JButton startButton = new JButton("Start");
    ActionListener startActionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component parent = (ComponentactionEvent.getSource();
        monitor = new ProgressMonitor(parent, "Loading Progress""Getting Started..."0200);
        progress = 0;
      }
    };
    startButton.addActionListener(startActionListener);
    frame.add(startButton);

    JButton increaseButton = new JButton("Manual Increase");
    ActionListener increaseActionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        if (monitor == null)
          return;
        if (monitor.isCanceled()) {
          System.out.println("Monitor canceled");
        else {
          progress += 5;
          monitor.setProgress(progress);
          monitor.setNote("Loaded " + progress + " files");
        }
      }
    };
    increaseButton.addActionListener(increaseActionListener);
    frame.add(increaseButton);

    JButton autoIncreaseButton = new JButton("Automatic Increase");
    ActionListener autoIncreaseActionListener = new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        if (monitor != null) {
          if (timer == null) {
            timer = new Timer(250new ActionListener() {

              public void actionPerformed(ActionEvent e) {
                if (monitor == null)
                  return;
                if (monitor.isCanceled()) {
                  System.out.println("Monitor canceled");
                  timer.stop();
                else {
                  progress += 3;
                  monitor.setProgress(progress);
                  monitor.setNote("Loaded " + progress + " files");
                }
              }
            });
          }
          timer.start();
        }
      }
    };
    autoIncreaseButton.addActionListener(autoIncreaseActionListener);
    frame.add(autoIncreaseButton);

    frame.setSize(300200);
    frame.setVisible(true);
  }
}
14. 110. 进度监视器
14. 110. 1. ProgressMonitor类ProgressMonitor类
14. 110. 2. 创建进度条对话框
14. 110. 3. 创建一个ProgressMonitor工具栏
14. 110. 4. Implement ProgressMonitor toolbar with a file to monitor
14. 110. 5. 自定义ProgressMonitor外观
14. 110. 6. 设置弹出延迟进度条对话框
14. 110. 7. Jar文件:包进度监控
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.