如何遍历Java中的日期范围? [英] How to iterate through range of Dates in Java?

查看:20
本文介绍了如何遍历Java中的日期范围?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的脚本中,我需要在给定开始日期和结束日期的情况下,在日期范围内执行一组操作.
请指导我使用 Java 实现这一目标.

In my script I need to perform a set of actions through range of dates, given a start and end date.
Please provide me guidance to achieve this using Java.

for ( currentDate = starDate; currentDate < endDate; currentDate++) {

}

我知道上面的代码根本不可能,但我这样做是为了向您展示我想要实现的目标.

I know the above code is simply impossible, but I do it in order to show you what I'd like to achieve.

推荐答案

好吧,你可以使用 Java 8 的 time-API,专门针对这个问题 java.time.LocalDate (或等效的 Joda Time Java 7 及更早版本的类)

Well, you could do something like this using Java 8's time-API, for this problem specifically java.time.LocalDate (or the equivalent Joda Time classes for Java 7 and older)

for (LocalDate date = startDate; date.isBefore(endDate); date = date.plusDays(1))
{
    ...
}

我会彻底推荐使用 java.time(或 Joda Time)而不是内置 Date/Calendar 类.

I would thoroughly recommend using java.time (or Joda Time) over the built-in Date/Calendar classes.

这篇关于如何遍历Java中的日期范围?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆