我有一个限制月份和年份 ex: 的字符串,2019-02我需要将其转换为两个LocalDateTime. 我需要 02 月的第一天和最后一天。
1 回答
LEATH
TA贡献1936条经验 获得超6个赞
使用YearMonth类:
YearMonth yearMonth = YearMonth.parse("2019-02");
LocalDate startDate = yearMonth.atDay(1); // 2019-02-01
LocalDate endDate = yearMonth.atEndOfMonth(); // 2019-02-28
LocalDateTime然后,如果您需要一天的开始时间,您可以转换为例如:
LocalDateTime startDayTime = startDate.atStartOfDay(); // 2019-02-01T00:00
添加回答
举报
0/150
提交
取消