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

查看:530
本文介绍了如何遍历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.

推荐答案

嗯,你可以这样做(使用 Joda时间

Well, you could do something like this (using Joda Time)

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

我会彻底推荐使用Joda Time内置的日期 / 日历 classes。

I would thoroughly recommend using Joda Time over the built-in Date/Calendar classes.

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

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