要接收给定年份的日期列表,您可以使用java.time 创建如下方法:
public static List<LocalDate> getDaysOfYear(int year) {
// initialize a list of LocalDate
List<LocalDate> yearDates = new ArrayList<>();
/*
* create a year object from the argument
* to reliably get the amount of days that year has
*/
Year thatYear = Year.of(year);
// then just add a LocalDate per day of that year to the list
for (int dayOfYear = 1; dayOfYear <= thatYear.length(); dayOfYear++) {
yearDates.add(LocalDate.ofYearDay(year, dayOfYear));
}
// and return the list
return yearDates;
}
您可以使用结果来提取每天的信息(例如在main 中):
public static void main(String[] args) {
// receive the LocalDates of a given year
List<LocalDate> yearDates = getDaysOfYear(2020);
// define a locale for output (language, formats and so on)
Locale localeToBeUsed = Locale.US;
// then extract information about each date
for (LocalDate date : yearDates) {
// or extract the desired parts, like the day of week
DayOfWeek dayOfWeek = date.getDayOfWeek();
// the month
Month month = date.getMonth();
// the calendar week based on a locale (the one of your system here)
WeekFields weekFields = WeekFields.of(localeToBeUsed);
int calendarWeek = date.get(weekFields.weekOfWeekBasedYear());
// and print the concatenated information (formatted, depending on the locale)
System.out.println(date.format(DateTimeFormatter.ofPattern("uuuu-MM-dd",
localeToBeUsed))
+ ", " + dayOfWeek.getDisplayName(TextStyle.FULL, localeToBeUsed)
+ ", CW " + calendarWeek
+ ", " + month.getDisplayName(TextStyle.FULL, localeToBeUsed));
}
}
输出将如下所示(为简洁起见,仅包含几行):
2020-01-01, Wednesday, CW 1, January
...
2020-02-29, Saturday, CW 9, February
...
2020-05-08, Friday, CW 19, May
...
2020-12-31, Thursday, CW 1, December