//获取开始时间
public static Date getBeginTime(int year, int month) {
YearMonth yearMonth = YearMonth.of(year, month);
//取月的第一天
LocalDate localDate = yearMonth.atDay(1);
//此日期开始时的午夜的本地日期时间,不为null。
LocalDateTime startOfDay = localDate.atStartOfDay();
//设置时区
ZonedDateTime zonedDateTime = startOfDay.atZone(ZoneId.of("Asia/Shanghai"));
return Date.from(zonedDateTime.toInstant());
}
//获取终止时间
public static Date getEndTime(int year, int month) {
YearMonth yearMonth = YearMonth.of(year, month);
//此年月的最后一个有效日期,不为null。
LocalDate endOfMonth = yearMonth.atEndOfMonth();
//hour - 使用的小时,从0到23。minute - 使用的分钟,从0到59。 second - 使用的秒,从0到59。nanoofsecond - 使用的纳秒级,从0到999,999,999。
LocalDateTime localDateTime = endOfMonth.atTime(23, 59, 59, 999);
ZonedDateTime zonedDateTime = localDateTime.atZone(ZoneId.of("Asia/Shanghai"));
return Date.from(zonedDateTime.toInstant());
}