我有一个LocalDate,我需要将其转换为YearMonth
我正在使用ThreeTen API(将JSR-310移植到Java SE 7)。
无论如何,我可以做到这一点吗?

我在Joda-Time中尝试过,但在ThreeTen中没有提供。

LocalDate date;
new YearMonth(date.getYear(), date.getMonthOfYear());

最佳答案

查看doc YearMonth api,尝试:

YearMonth myYearMonth = YearMonth.from(localDate);

关于java - 将Threeten LocalDate转换为YearMonth,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22475987/

10-10 04:07