使用 Joda 或标准 Java API 检查日期是否在时间范围内
我第一次是字符串“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Joda Time 你可以做这样的事情:
Using Joda Time you could do something like this:
创建与“测试”日期同一天的开始时间和结束时间的日历实例。然后,您可以轻松比较日历对象以确定当前日期是在范围内还是之外。
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.