是否有任何 java 类可以从 cron 表达式获取日期
我需要找出给定 cron 表达式表示的日期和时间的第一次出现。 是否有任何 java 类、实用程序代码可以帮助从给定的 cron 表达式获取数据对象?
I need to find out the first occurrence of Date and time represented by given cron expression.
Is there any java class, utility code which can help in getting data object from given cron expression ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您还可以利用 spring 的 http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html 为此
You can also leverage on spring's http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html for this
您可以检查 org.quartz .CronExpression
它有一个名为 getNextValidTimeAfter 的方法,您可以使用该方法。
You can check org.quartz.CronExpression
It has a method named getNextValidTimeAfter which you can use.
这是一个类似于 Quartz 的 CronExpression 的替代方案,但无需向您的项目添加成熟的调度程序:
cron-utils
您可以通过以下方式获取您需要的日期:
根据官方描述,< a href="https://github.com/jmrozanec/cron-utils" rel="noreferrer">cron-utils 是:
Here's an alternative similar to Quartz's CronExpression but without having to add a fully fledged scheduler to your project:
cron-utils
You can get the date you need with the following:
According to the official description, cron-utils is:
如果您使用 Spring 您可以使用:
If you're using Spring you could use:
看起来您可以使用以下任意一个:
It looks like you could use either of these: