是否有任何 java 类可以从 cron 表达式获取日期

发布于 2024-10-06 08:45:04 字数 82 浏览 7 评论 0原文

我需要找出给定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

找回味觉 2024-10-13 08:45:04

您还可以利用 spring 的 http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html 为此

CronSequenceGenerator generator = new CronSequenceGenerator(cronExpression);
Date nextRunDate= generator.next(new Date());

You can also leverage on spring's http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html for this

CronSequenceGenerator generator = new CronSequenceGenerator(cronExpression);
Date nextRunDate= generator.next(new Date());
深海不蓝 2024-10-13 08:45:04

您可以检查 org.quartz .CronExpression
它有一个名为 getNextValidTimeAfter 的方法,您可以使用该方法。

You can check org.quartz.CronExpression
It has a method named getNextValidTimeAfter which you can use.

誰ツ都不明白 2024-10-13 08:45:04

这是一个类似于 Quartz 的 CronExpression 的替代方案,但无需向您的项目添加成熟的调度程序:
cron-utils

您可以通过以下方式获取您需要的日期:

//Get date for next execution
DateTime now = DateTime.now();
CronDefinition cronDefinition = CronDefinitionBuilder.instanceDefinitionFor(QUARTZ);
CronParser parser = new CronParser(cronDefinition);
ExecutionTime executionTime = ExecutionTime.forCron(parser.parse("* * * * * * *"));
DateTime nextExecution = executionTime.nextExecution(now));

根据官方描述,< a href="https://github.com/jmrozanec/cron-utils" rel="noreferrer">cron-utils 是:

一个 Java 库,用于解析、验证、迁移 cron 并获取人类可读的描述。该项目遵循语义版本控制约定并使用 Apache 2.0 许可证。

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:

//Get date for next execution
DateTime now = DateTime.now();
CronDefinition cronDefinition = CronDefinitionBuilder.instanceDefinitionFor(QUARTZ);
CronParser parser = new CronParser(cronDefinition);
ExecutionTime executionTime = ExecutionTime.forCron(parser.parse("* * * * * * *"));
DateTime nextExecution = executionTime.nextExecution(now));

According to the official description, cron-utils is:

A Java library to parse, validate, migrate crons as well as get human readable descriptions for them. The project follows the Semantic Versioning Convention and uses Apache 2.0 license.

朦胧时间 2024-10-13 08:45:04

如果您使用 Spring 您可以使用:

CronTrigger trigger = new CronTrigger(cron);
TriggerContext context = new TriggerContext() {

public Date lastScheduledExecutionTime() {
    return null;
}

public Date lastActualExecutionTime() {
    return null;
}

public Date lastCompletionTime() {
    return null;
}
};
return trigger.nextExecutionTime(context);

If you're using Spring you could use:

CronTrigger trigger = new CronTrigger(cron);
TriggerContext context = new TriggerContext() {

public Date lastScheduledExecutionTime() {
    return null;
}

public Date lastActualExecutionTime() {
    return null;
}

public Date lastCompletionTime() {
    return null;
}
};
return trigger.nextExecutionTime(context);
云归处 2024-10-13 08:45:04

看起来您可以使用以下任意一个:

  • j-cron-expression
  • < a href="http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html" rel="nofollow noreferrer">Quartz CronTrigger 类

It looks like you could use either of these:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文