使用 Joda 或标准 Java API 检查日期是否在时间范围内

发布于 2024-09-03 12:07:26 字数 63 浏览 5 评论 0原文

我第一次是字符串“12:00:00”,另一个是“19:00:00”。如何检查一天中的时间部分是否在这些时间值内?

I have first time as string '12:00:00' and another '19:00:00'. How to check time portion of the day is within these time values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

固执像三岁 2024-09-10 12:07:26

使用 Joda Time 你可以做这样的事情:

DateTime start = new DateTime(2010, 5, 25, 12, 0, 0, 0);
DateTime end = new DateTime(2010, 5, 25, 21, 0, 0, 0);
Interval interval = new Interval(start, end);
DateTime test = new DateTime(2010, 5, 25, 16, 0, 0, 0);
System.out.println(interval.contains(test));

Using Joda Time you could do something like this:

DateTime start = new DateTime(2010, 5, 25, 12, 0, 0, 0);
DateTime end = new DateTime(2010, 5, 25, 21, 0, 0, 0);
Interval interval = new Interval(start, end);
DateTime test = new DateTime(2010, 5, 25, 16, 0, 0, 0);
System.out.println(interval.contains(test));
夏の忆 2024-09-10 12:07:26

创建与“测试”日期同一天的开始时间和结束时间的日历实例。然后,您可以轻松比较日历对象以确定当前日期是在范围内还是之外。

Create calendar instances of the start and end times for the same day as your 'test' date. Then you can easily compare the calendar objects to determine if the current date is inside or outside the range.

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