java crontab表达式_crontab工具类 断给定的时间 是否 满足 crontab 表达式.md

itone.crontab工具类.md

/**

* 断给定的时间 是否 满足 crontab 表达式【忽略毫秒】

* 可以接受指定秒数 误差

*

*/

public class CrontabUtils {

private static final Logger LOGGER = LoggerFactory.getLogger(CrontabUtils.class);

/**

* 判断给定的时间 是否 满足 crontab 表达式【忽略毫秒】

*

* @param date the date to evaluate

* @return a boolean indicating whether the given date satisfies the cron

* expression

*/

public static boolean isMatch(String crontabExpress, Date date) {

try {

CronExpression crontabExpression = new CronExpression(crontabExpress);

return crontabExpression.isSatisfiedBy(date);

} catch (ParseException e) {

LOGGER.error(e.getMessage(), e);

return false;

}

}

public static boolean isMatch(CronExpression cronExpression, Date date) {

return cronExpression.isSatisfiedBy(date);

}

/**

* 判断给定的时间 是否 满足 crontab 表达式【忽略毫秒】 可以接受指定秒数 误差

* @param cronExpression

* @param date

* @param secondsRange 可以接受指定秒数

* @return

*/

public static boolean isMatchRange(CronExpression cronExpression,Date date,int secondsRange) {

Calendar testDateCal = Calendar.getInstance(cronExpression.getTimeZone());

testDateCal.setTime(date);

testDateCal.set(Calendar.MILLISECOND, 0);

Date originalDate = testDateCal.getTime();

testDateCal.add(Calendar.SECOND, -secondsRange-1);

Date timeAfter = cronExpression.getTimeAfter(testDateCal.getTime());

return ((timeAfter != null) && (Math.abs(timeAfter.getTime()-originalDate.getTime())<=secondsRange*1000));

}

/**

* 判断给定的时间 是否 满足 crontab 表达式【忽略毫秒】 可以接受指定秒数 误差

*/

public static boolean isMatchRange(CronExpression cronExpression,long seconds,int secondsRange) {

return isMatchRange(cronExpression, new Date(seconds * 1000), secondsRange);

}

/**

* 判断给定的时间 是否 满足 crontab 表达式【忽略毫秒】 可以接受指定秒数 误差

*/

public static boolean isMatchRange(String crontab,Date date,int secondsRange) {

try {

CronExpression crontabExpression = new CronExpression(crontab);

return isMatchRange(crontabExpression,date,secondsRange);

} catch (ParseException e) {

LOGGER.error(e.getMessage(), e);

return false;

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值