Quartz.Net CronExpression 生成器
我有一些 GUI 控件形成一个典型的 Windows 调度程序(日期\时间选择器、复选框等),我想从中构建 CronExpression 字符串。
有谁知道构建表达式字符串的好方法,无论是预先存在的类还是解决此问题的好方法?
I have some GUI controls forming a typical windows scheduler (Date\Time pickers, check boxes, etc) that I would like to build a CronExpression string from.
Does anyone know of a good way to build the expression string, either a pre-existing class or good approaches to tackle this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Quartz.Net 中的 Cron 表达式由 7 个 子组成-表达式:
我通常使用CronMaker来创建我自己的cron表达式。
另一个选择是另一个效果很好的工具。
Cron expressions in Quartz.Net are made up of 7 sub-expressions:
I usually use CronMaker to create my own cron expressions.
Another option is this other tool which works pretty well.
我使用这个 jQuery 插件与 asp.net 和 Quartz.Net 来安排 cron 作业: http: //shawnchin.github.com/jquery-cron/
这也是一个不错的选择:http://www.geekytidbits.com/cron-expression-descriptor-demo/Default.aspx
I used this jQuery plug-in with asp.net and Quartz.Net to schedule the cron jobs: http://shawnchin.github.com/jquery-cron/
This was a good alternative too: http://www.geekytidbits.com/cron-expression-descriptor-demo/Default.aspx
他的问题是是否有一种方法可以使用界面(可能是通过 JavaScript 制作的窗口)构建 cron 表达式,其中有复选框和单选按钮来检查和选择选项。并根据选择和选中的选项创建一个 cron 表达式。
这个问题的答案是你必须在检查完所有已检查的选项后编写逻辑。没有直接的方法可以做到这一点。
His question is whether there is a way to build a cron expression using an interface (may be a window made through JavaScript) where there are check boxes and radio buttons to check and select options. And according to selected and checked option a cron expression will be created.
Answer to this question is you have to write logic after checking all the options that has been checked. There is no direct way to do this.