在应用开发中,经常需要一些周期性的操作,比如每5分钟检查一下新邮件等。对于这样的操作最方便、高效的实现方式就是使用java.util.Timer工具类。比如下面的代码每5分钟检查一遍是否有新邮件:
package test.Timer;

import java.util.Timer;
import java.util.TimerTask;

public class EngeeTimer {

    
private int minutes;

    
private Timer timer = new Timer();

    
public int getMinutes() {
        
return minutes;
    }


    
public void setMinutes(int minutes) {
        
this.minutes = minutes;
    }


    
public void start() {

        timer.schedule(
new TimerTask() {

            
public void run() {
                System.out.print(
"接受邮件");

            }


        }
0, minutes * 1000 * 60);

    }


    
public Timer getTimer() {
        
return timer;
    }


    
public void setTimer(Timer timer) {
        
this.timer = timer;
    }


}


  使用这几行代码之后,Timer本身会每隔5分钟调用一遍server.checkNewMail()方法,不需要自己启动线程。Timer本身也是多线程同步的,多个线程可以共用一个Timer,不需要外部的同步代码。
在《The JavaTutorial》中有更完整的例子:

 1package test.Timer;
 2
 3public class Main {
 4
 5    
 6    public static void main(String[] args) {
 7        EngeeTimer entimer=new EngeeTimer();
 8        entimer.setMinutes(1);
 9        entimer.start();
10
11    }

12
13}

14

运行结果:
3分钟后
hahaha,this is a timenrhahaha,this is a timenrhahaha,this is a timenrhahaha,this is a timenrhahaha,th