解析Cron表达式

1.引入

      有些时候我们不但需要定时执行任务,而且需要获得下一次执行的时间。

      但是我们执行时间配置的是cron表达式,不能够根据上次执行的时间+执行间隔这种方式来获得。所以我们必须要解析cron

2.方法

		Date curTime = new Date();
		System.out.println(curTime);
		
		CronExpression expression;
		try 
		{
			expression = new CronExpression("0 30 15 * * ?");
			Date newDate = expression.getNextValidTimeAfter(curTime);
			System.out.println(newDate);
		} catch (ParseException e) {
			logger.error("fail to parse cron express", e);
		} catch (Exception e) {
			logger.error("fail to update rule nextTime", e);
		}
          结果为:

Wed Jun 24 19:11:52 CST 2015
Thu Jun 25 15:30:00 CST 2015


       说明:

       (1)当然需要引入Quartz的依赖

    
    org.opensymphony.quartz    
    quartz-all    
    1.6.1    
 
       (2)getNextValidTimeAfter(Date date)是根据cron表达式,来获得传入时间之后的第一个执行时间

                 如上例中:当前时间为6月24日19:11:52,cron表示每天的15:30:00来执行,那么返回的结果就是6月25日15:30:00


你可能感兴趣的:(Quartz)