我正在使用这个 DateTimeFormatter:
DateTimeFormatter.ofPattern("ddMMYY")
我想解析字符串150790
,我得到了这个错误:
Unable to obtain LocalDate from TemporalAccessor: {DayOfMonth=15, MonthOfYear=7, WeekBasedYear[WeekFields[MONDAY,4]]=2090},ISO of type java.time.format.Parsed
显然,我想得到以下内容TemporalAccessor
:
{DayOfMonth=15, MonthOfYear=7, WeekBasedYear=1990}
你知道为什么我得到的是 2090 年而不是 1990 年吗?
谢谢你的帮助