我想分析由月(1-12)和年份的例如像日期:解析與一個月日期沒有前導0
1.2015
12.2015
到LocalDate
我得到使用此代碼的異常:
final DateTimeFormatter monthYearFormatter = DateTimeFormatter.ofPattern("M.yyyy");
LocalDate monthYearDate = LocalDate.parse(topPerformanceDate, monthYearFormatter);
java.time.format.DateTimeParseException:文本 '6.2015' 無法解析:無法從TemporalAccessor獲得LOCALDATE:{MonthOfYear = 6,年份= 2015},輸入的ISO java.time.format.Parsed
documentation在短月格式上對我來說不是很清楚。
編輯:我猜這個問題是月份錯過了嗎?
我不是Java專家,但您希望解析日期中的哪一天? – nrodic
我希望這個月的某一天不確定... –
您以後想用這樣一個無聊的約會怎麼樣? – Pshemo