Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
にLocalDate変換する必要がある がありYearMonthます。ThreeTen API (JSR-310 から Java SE 7 へのバックポート) を使用しています。とにかく私はこれを行うことができますか?
LocalDate
YearMonth
Joda-Time でこれを試しましたが、ThreeTen では提供されていません。
LocalDate date; new YearMonth(date.getYear(), date.getMonthOfYear());
これらのコマンドはすべて同じYearMonth値になります。
YearMonth.from(localDate) localDate.query(YearMonth.FROM) // ThreeTen localDate.query(YearMonth::from) // JDK 8 YearMonth.of(localDate.getYear(), localDate.getMonth()) YearMonth.of(localDate.getYear(), localDate.getMonthValue())