• timer执行定时任务方法


    public void schedule(TimerTask task,
                         long delay)  说明:该方法会在设定的延时后执行一次任务。

    public void schedule(TimerTask task,
                         Date time) 说明:该方法会在指定的时间点执行一次任务。

    public void schedule(TimerTask task,
                         long delay,
                         long period) 说明:该方法会在指定的延时后执行任务,并且在设定的周期定时执行任务。

    public void schedule(TimerTask task,
                         Date firstTime,
                         long period)  说明:该方法会在指定的时间点执行任务,然后从该时间点开始,在设定的周期定时执行任务。特别的,如果设定的时间点在当前时间之前,任务会被马上执行,然后开始按照设定的周期定时执行任务。

    例子:

    package demo;

    import java.util.Date;  
    import java.util.TimerTask;  

    public class TestTimerTask extends TimerTask {
         public void run() {  
             Date executeTime = new Date(this.scheduledExecutionTime());  
             System.out.println("本次任务执行的时间是" + executeTime);  
     }  
    }


    package demo;

    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Timer;

    public class TestTimer {
        public static void main(String[] args) throws ParseException {  
            Timer timer = new Timer();  
            TestTimerTask task = new TestTimerTask();  
    //        timer.schedule(task, 5000L, 1000L);
            SimpleDateFormat sdf=new SimpleDateFormat("hh:MM");
            
            timer.schedule(task, sdf.parse("15:38"));
    }
    }


  • 相关阅读:
    利用Flot作基于时间段的曲线图
    Linux Apache使用CGI
    Windows node.js安装运行npm显示类似"ENOENT, stat 'C:UsersXXXXAppDataRoaming pm'错误
    JavaWeb返回Json格式数据JQuery Ajax无法解析的问题
    C++ 14 auto
    [原创] Jenkins slave agent 分布式构建
    [原创] Jenkins 邮件配置 (使用 Jenkins Email Extension Plugin)
    Linux 域名服务器配置
    证书管理
    Ubuntu 安装 Kubernetes
  • 原文地址:https://www.cnblogs.com/xzcBY/p/7568943.html
Copyright © 2020-2023  润新知