定时器,进度条 : 定时器 « 图形用户界面 « 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 » 图形用户界面 » 定时器屏幕截图 
定时器,进度条

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Calendar;

public class TimerExample extends JPanel implements ActionListener {
    private Timer timer = new Timer(100this);

    private JLabel clockLabel;
    private Calendar calendar = Calendar.getInstance();
    private SimpleDateFormat dateFormat = new SimpleDateFormat("h:mm ss a");
    private JProgressBar secondsProgressBar = new JProgressBar(01000);

    public TimerExample() {
        this.clockLabel = new JLabel("Clock Stopped");
        this.clockLabel.setFont(this.clockLabel.getFont().deriveFont(Font.BOLD, 16));
        this.clockLabel.setHorizontalTextPosition(JLabel.CENTER);

        this.secondsProgressBar.setVisible(false);
        this.secondsProgressBar.setForeground(Color.blue);

        add(this.clockLabel);
        add(secondsProgressBar);
        add(new JButton(new ToggleClockAction()));

    }

    private class ToggleClockAction extends AbstractAction {
        private String startClock = "Start Clock";
        private String stopClock = "Stop Clock";
        private String clockStopped = "Clock Stopped";

        public ToggleClockAction() {
            super();
            putValue(Action.NAME, startClock);
        }

        public void actionPerformed(ActionEvent e) {
            if (TimerExample.this.timer.isRunning()) {
                putValue(Action.NAME, startClock);
                TimerExample.this.timer.stop();
                TimerExample.this.secondsProgressBar.setVisible(false);
                TimerExample.this.clockLabel.setText(clockStopped);
            else {
                putValue(Action.NAME, stopClock);
                // Call Action Performed To Initialize Time Before Timer is Started.
                // Null is ok since we ignore the event.
                TimerExample.this.actionPerformed(null);
                TimerExample.this.secondsProgressBar.setVisible(true);
                TimerExample.this.timer.start();
            }
        }
    }

    public void actionPerformed(ActionEvent e) {
        this.calendar.setTimeInMillis(System.currentTimeMillis());
        this.clockLabel.setText(this.dateFormat.format(this.calendar.getTime()));
        int milliseconds = this.calendar.get(Calendar.MILLISECOND);

        this.secondsProgressBar.setValue(milliseconds);
    }
    public void endExample() {
        this.timer.stop();
    }
    public static void main(String[] a){
      JFrame f = new JFrame();
      f.setDefaultCloseOperation(1);
      f.add(new TimerExample());
      f.pack();
      f.setVisible(true);
    

}


           
       
Related examples in the same category
1. 定时器:时钟标签定时器:时钟标签
2. 定时器样本定时器样本
3. 一个内部类
4. 一个静态内部类
5. 计时器演示
6. 时间分辨率
7. 一个applet计时器
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.