Java之定时器任务Timer用法

在项目开发中,经常会遇到需要实现一些定时操作的任务,写过很多遍了,然而每次写的时候,总是会对一些细节有所遗忘,后来想想可能是没有总结的缘故,所以今天小编就打算总结一下可能会被遗忘的小点:

1. public void schedule(TimerTask task,Date time) 这个方法中如启动时,已经过了time的时间,则系统会在启动后直接执行一次,

话不多少直接上代码

package com.test.timer.task;

import Java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

import org.junit.Test;

/**
 *
 * java实现定时器的若干方法
 *
 * @author jimi
 *
 */
public class TestTask {
   
    private static Timer timer = new Timer();
   
    private static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
   
    public static void main(String[] args){
        Calendar calendar = Calendar.getInstance();
        int year = calendar.get(Calendar.YEAR);     
        int month = calendar.get(Calendar.MONTH);
        int day = calendar.get(Calendar.DAY_OF_MONTH);
        calendar.set(year,month,day,20,35,00);
       
        //如果这个时间已经过了,则会启动会立即执行一次
        timer.schedule(new TimerTask() {
            @Override
            public void run() {
                System.out.println("固定执行任务的时间:" + dateFormat.format(new Date()));
            }
        }, calendar.getTime());
    }
   
}

代码中我指定在当天的20时35分执行,启动程序后的结果如下:

Java之定时器任务Timer用法


可以看到我程序是在20:40:47执行的,已经超过我设置的20时35分00秒,所以启动后直接执行一次。

2. schedule(TimerTask task,long delay,long period) 和 scheduleAtFixedRate(TimerTask task,long delay,long period)方法的区别
  简单来说就是定时执行scheduleAtFixedRate不受外界影响,假如某一次TimerTask执行时间超过了定时执行周期,下一次执行时间不会受该任务执行时间的影响,
  依然会在指定时间执行,而schedule则会受影响,直接上代码来看:

package com.test.timer.task;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

/**
 *
 * java实现定时器的若干方法
 *
 * @author jimi
 *
 */
public class TestTask {
   
    private static Timer timer = new Timer();
   
    private static DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
   
    private static int index = 0;
   
    public static void main(String[] args) throws ParseException{
       
        //固定速率
        timer.scheduleAtFixedRate(new TimerTask() {
                    @Override
                    public void run() {
                        index++;
                        if (index % 5 == 0){
                            try {
                                Thread.sleep(5000);
                            } catch (InterruptedException e) {
                                e.printStackTrace();
                            }
                        }
                        System.out.println("每隔4秒执行一次:" + dateFormat.format(new Date()));
                    }
                }, 0, 4000);
       
    }
   
}

从代码可以看出,在index为5的倍数时,程序会休眠5秒,我们了来看看执行的结果

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/3448bba0453b7594a51a69f1a43ef505.html