概述
使用quartz做为后台任务调度框架,cron表达式设置时间,需要根据cron表达式计算出最近n次的执行具体时间–这个通常在开放给用户修改任务执行时间给出提示时非常有用
解决:使用quartz的jar包中提供的TriggerUtils类来计算
示例
1、先根据corn算出执行时间
例如:获取着一个月内 每天早上10:15触发的日期
package com.xgj.quartz.quartzItself.executeTimesCount; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.List; import org.quartz.TriggerUtils; import org.quartz.impl.triggers.CronTriggerImpl; /** * * * @ClassName: CountExecuteTimes * * @Description: 使用quartz做为后台任务调度框架,cron表达式设置时间,需要根据cron表达式计算出最近n次的执行具体时间-- * 这个通常在开放给用户修改任务执行时间给出提示时非常有用. * * 方法:使用quartz的jar包中提供的TriggerUtils类来计算 * * @author: Mr.Yang * * @date: 2017年11月15日 上午11:24:03 */ public class CountExecuteTimes { public static void main(String[] args) { try { CronTriggerImpl cronTriggerImpl = new CronTriggerImpl(); // 每天早上10:15触发 cronTriggerImpl.setCronExpression("0 15 10 * * ?"); Calendar calendar = Calendar.getInstance(); Date now = calendar.getTime(); calendar.add(Calendar.MONTH, 1);// 把统计的区间段设置为从现在到1月后的今天(主要是为了方法通用考虑) // 这里的时间是根据corn表达式算出来的值 List<Date> dates = TriggerUtils.computeFireTimesBetween( cronTriggerImpl, null, now, calendar.getTime()); System.out.println(dates.size()); SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss"); for (Date date : dates) { System.out.println(dateFormat.format(date)); } } catch (ParseException e) { e.printStackTrace(); } } }
运行结果
30 2017-11-16 10:15:00 2017-11-17 10:15:00 2017-11-18 10:15:00 2017-11-19 10:15:00 2017-11-20 10:15:00 2017-11-21 10:15:00 2017-11-22 10:15:00 2017-11-23 10:15:00 2017-11-24 10:15:00 2017-11-25 10:15:00 2017-11-26 10:15:00 2017-11-27 10:15:00 2017-11-28 10:15:00 2017-11-29 10:15:00 2017-11-30 10:15:00 2017-12-01 10:15:00 2017-12-02 10:15:00 2017-12-03 10:15:00 2017-12-04 10:15:00 2017-12-05 10:15:00 2017-12-06 10:15:00 2017-12-07 10:15:00 2017-12-08 10:15:00 2017-12-09 10:15:00 2017-12-10 10:15:00 2017-12-11 10:15:00 2017-12-12 10:15:00 2017-12-13 10:15:00 2017-12-14 10:15:00 2017-12-15 10:15:00
2、然后加上一层for循环,就可以得到指定个数的执行日期了
for (int i = 0; i < dates.size(); i++) { if (i >= 10) { //这个是提示的日期个数 break; } System.out.println(dateFormat.format(dates.get(i))); }
示例源码
代码已托管到Github—> https://github.com/yangshangwei/SpringMaster