- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,“发生在午夜”的定义是,当任务运行时,new DateTime()
或类似的时间部分在转换为人类时将显示 00:00:00 或更高版本可读格式。重要的一点是,它不能显示前一天的 23:59:59。
实现此目的的常见方法是计算现在与所需时间点之间的毫秒数,然后使用 ScheduledExecutorService
在正确的时间执行任务。但是,当插入闰秒时,这将导致任务提前一秒运行(或提前几毫秒,具体取决于闰秒的“涂抹”方式以及您安排任务的时间):
Runnable task = ...
long numberOfMillisUntilMidnight = ...
ScheduledExecutorService executor = ...
// task runs too early when leap seconds are inserted
executor.schedule(task, numberOfMillisUntilMidnight, TimeUnit.MILLISECONDS);
原因是 executor.schedule()
是基于 System.nanoTime()
的,它显然忽略了闰秒。我想我需要的是一些基于“此时运行”而不是“在这段时间内运行”的调度程序。
对于那些感兴趣的人来说,任务必须在午夜运行的原因与以下事实有关:我的系统中的所有事件都必须根据它们发生的日期进行分类,并且在可能的情况下,这需要与另一个系统同步。当然,如果其他系统在每个事件上都标明具体日期就更好了,但我们不在那里。
最佳答案
I guess what I need is some scheduler based on "run at this time" rather than "run after this amount of time"
这将是一个能歌善舞的解决方案。但是:
First, definition of "occur at midnight" is that when task is run, new DateTime() or similar will show 00:00:00 or later for the time portion...Important point is that it must not show 23:59:59 of the previous day.
(我的重点)
最简单的方法就是添加第二个,甚至两个。因此,通常情况下为 00:00:01(00:00:00 或更高版本),而 00:00:00(不是 23:59:59) em> 在闰秒的情况下。
关于java - 即使闰秒刚刚发生,如何在 Java 中安排任务在午夜发生?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41461647/
我是一名优秀的程序员,十分优秀!