gpt4 book ai didi

java - 比较时间并重复执行某些任务

转载 作者:行者123 更新时间:2023-11-30 03:56:54 25 4
gpt4 key购买 nike

如果时间介于两者之间,我想定期执行任务

9 AM to 9:11 AM 

我能够捕获当前时间,但是请告诉我如何将其与上述条件进行比较?

public class Test  {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String systemTime = sdf.format(new Date()).toString();
System.out.println(systemTime);
}
}

最佳答案

您可以使用 while 循环来实现这一点:

public static void main(String[] args) {

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String systemTime = sdf.format(new Date()).toString();

String START = "09:00:00";
String END = "09:11:00";

while (compareTime(systemTime, START, END))
{
System.out.println("Your task here");
systemTime = sdf.format(new Date()).toString();
}
}

private static boolean compareTime(String systemTime, String START, String END)
{
return systemTime.compareTo(START) >= 0 && systemTime.compareTo(END) <= 0;
}

关于java - 比较时间并重复执行某些任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22935550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com