将字符串解析为本地日期不使用所需的世纪

Parsing string to local date doesn't use desired century

我正在使用这个 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 年吗?

感谢您的帮助

因为这个问题实际上是关于新的 java.time-package 而不是 SimpleDateFormat 我将引用以下内容 relevant section:

Year: The count of letters determines the minimum field width below which padding is used. If the count of letters is two, then a reduced two digit form is used. For printing, this outputs the rightmost two digits. For parsing, this will parse using the base value of 2000, resulting in a year within the range 2000 to 2099 inclusive.

我们看到 Java-8 默认使用范围 2000-2099,不像 SimpleDateFormat 使用范围 -80 年到 +20 年相对于今天。

如果要配置它,则必须使用 appendValueReduced()。这是以一种不方便的方式设计的,但可能,请参见此处:

String s = "150790";

// old code with base range 2000-2099
DateTimeFormatter dtf1 = 
  new DateTimeFormatterBuilder().appendPattern("ddMMyy").toFormatter();
System.out.println(dtf1.parse(s)); // 2090-07-15

// improved code with base range 1935-2034
DateTimeFormatter dtf2 = 
  new DateTimeFormatterBuilder().appendPattern("ddMM")
  .appendValueReduced(
    ChronoField.YEAR, 2, 2, Year.now().getValue() - 80
  ).toFormatter();
System.out.println(dtf2.parse(s)); // 1990-07-15

顺便说一下,如果您真的想要基于周的年份,那么您必须使用 Y 而不是 y 或适当的字段 IsoFields.WEEK_BASED_YEAR。关于您没有任何其他与周相关的字段这一事实,我假设是正常日历年,而不是基于周的日历年。