在Java中,可以使用java.time.LocalDate
類來處理日期。下面是一個示例代碼,演示如何獲取兩個日期之間的所有日期:
import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) {
LocalDate startDate = LocalDate.of(2022, 1, 1);
LocalDate endDate = LocalDate.of(2022, 1, 10);
List<LocalDate> allDates = new ArrayList<>();
LocalDate currentDate = startDate;
while (currentDate.isBefore(endDate) || currentDate.isEqual(endDate)) {
allDates.add(currentDate);
currentDate = currentDate.plusDays(1);
}
for (LocalDate date : allDates) {
System.out.println(date);
}
}
}
在上面的示例中,startDate
和endDate
分別表示要獲取的日期范圍的起始日期和結束日期。allDates
是一個列表,用于存儲所有的日期。currentDate
是一個當前日期變量,初始值為起始日期。
使用while
循環,我們在currentDate
小于等于結束日期時,將當前日期添加到allDates
列表中,并將currentDate
增加一天。最后,我們遍歷allDates
列表,并打印每個日期。
輸出將是從2022年1月1日到2022年1月10日的所有日期。