How to iterate through range of Dates in Java?(如何遍历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中的日期范围?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何遍历Java中的日期范围?
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
