在 Java Joda Time 中使用“isBefore”的仅日期比较
有没有办法只将日期与 isBefore 函数的 DateTime 对象进行比较?
例如,
DateTime start = new DateTime(Long.parseLong(<someInput>));
DateTime end = new DateTime(Long.parseLong(<someInput>));
现在,当我这样做时,
while (start.isBefore(end)) {
// add start date to the list
start = start.plusDays(1);
}
这会导致不一致的行为(对于我的场景),因为它也考虑了时间,而我想要的是仅使用isBefore比较日期。有没有办法做到这一点?
请让我知道。
谢谢!