zoukankan      html  css  js  c++  java
  • 定时周期执行指定的任务 ScheduledExecutorService

    一:简单说明

    ScheduleExecutorService接口中有四个重要的方法,其中scheduleAtFixedRate和scheduleWithFixedDelay在实现定时程序时比较方便。

    下面是该接口的原型定义

    java.util.concurrent.ScheduleExecutorService extends ExecutorService extends Executor

    1.接口scheduleAtFixedRate原型定义及参数说明

    public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,  
               long initialDelay,  
                long period,  
                TimeUnit unit);  

    command:执行线程
    initialDelay:初始化延时
    period:两次开始执行最小间隔时间
    unit:计时单位

    2:接口scheduleWithFixedDelay原型定义及参数说明

    public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,  
                   long initialDelay,  
                    long delay,  
                    TimeUnit unit);

    command:执行线程
    initialDelay:初始化延时
    period:前一次执行结束到下一次执行开始的间隔时间(间隔执行延迟时间)
    unit:计时单位

    二:功能示例

    1.按指定频率周期执行某个任务。

    初始化延迟0ms开始执行,每隔100ms重新执行一次任务。

    /** 
     * 以固定周期频率执行任务 
     */public static void executeFixedRate() {  
        ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  
        executor.scheduleAtFixedRate(  
                new EchoServer(),  
                0,  
                100,  
               TimeUnit.MILLISECONDS);  
    } 

    间隔指的是连续两次任务开始执行的间隔。

    2.按指定频率间隔执行某个任务。

    初始化时延时0ms开始执行,本次执行结束后延迟100ms开始下次执行。

    /** 
     * 以固定延迟时间进行执行 
     * 本次任务执行完成后,需要延迟设定的延迟时间,才会执行新的任务 
     */  
     public static void executeFixedDelay() {  
      ScheduledExecutorService executor =  Executors.newScheduledThreadPool(1);  
        executor.scheduleWithFixedDelay(  
               new EchoServer(),  
               0,  
                100,  
               TimeUnit.MILLISECONDS);  
    }  

    3.周期定时执行某个任务。

    有时候我们希望一个任务被安排在凌晨3点(访问较少时)周期性的执行一个比较耗费资源的任务,可以使用下面方法设定每天在固定时间执行一次任务。

    /** 
     * 每天晚上8点执行一次 
     * 每天定时安排任务进行执行 
     */  
    public static void executeEightAtNightPerDay() {  
        ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);  
        long oneDay = 24 * 60 * 60 * 1000;  
        long initDelay  = getTimeMillis("20:00:00") - System.currentTimeMillis();  
        initDelay = initDelay > 0 ? initDelay : oneDay + initDelay;  
      
        executor.scheduleAtFixedRate(  
                new EchoServer(),  
               initDelay,  
                oneDay,  
              TimeUnit.MILLISECONDS);  
    }  
    /** 
     * 获取指定时间对应的毫秒数 
     * @param time "HH:mm:ss" 
     * @return 
     */  
    private static long getTimeMillis(String time) {  
        try {  
            DateFormat dateFormat = new SimpleDateFormat("yy-MM-dd HH:mm:ss");  
            DateFormat dayFormat = new SimpleDateFormat("yy-MM-dd");  
           Date curDate = dateFormat.parse(dayFormat.format(new Date()) + " " + time);  
           return curDate.getTime();  
        } catch (ParseException e) {  
            e.printStackTrace();  
        }  
       return 0;  
    } 

    4.辅助代码

    class EchoServer implements Runnable {  
        @Override  
        public void run() {  
           try {  
                Thread.sleep(50);  
            } catch (InterruptedException e) {  
               e.printStackTrace();  
            }  
            System.out.println("This is a echo server. The current time is " +  
                   System.currentTimeMillis() + ".");  
        }  
    }  
  • 相关阅读:
    VS学习笔记2
    VS学习笔记
    分享几个有趣的小程序
    关于类型的转换(抄来的 ,留着,感觉有用。)
    现在觉得IT还挺有意思
    DataGrid 查出一个列 按要求显示格式 例如:操作人(地点)
    WPF DataGrid 列显示0,-1(作废、删除)状态,1,2(支出、收入)类型,操作人(在其他表中),如何转换格式。
    WPF DataGrid中鼠标双击某一列,弹出窗体作为(增加、修改、详细)按钮的快捷键。
    “指定的参数已超出有效值的范围”在【 parameterUpdate.Add(new OracleParameter("STATUS", 0));】报错
    WPF StoreDataSetPaginator
  • 原文地址:https://www.cnblogs.com/wei1228565493/p/4437284.html
Copyright © 2011-2022 走看看