我从服务器获取时间格式为 { "from" : "12-00", "to" : "01-00" } 然后,我像这样解析它
DateTimeFormat.forPattern("HH:mm").parseDateTime(dateString)
然后,我需要检查当前时间是否在这个小时范围内:
Interval(from, to).containsNow()
间隔构造函数抛出错误,因为第二个日期超过第一个 DateTime 对象时间是 1970-01-01T12:00:00.000Z 和 1970-01-01T01:00:00.000Z
如何检查当前时间是否在小时范围内?乔达有时间范围吗?