php小编小新在本文中将介绍关于Java中的LocalDate.parse和ResolverStyle.STRICT的问题。当在亚洲或香港使用这些方法时,可能会得到意外的结果。我们将探讨这个问题,并提供解决方案。
我的输入是 19.12.0009,预期为 dec 19 00:00:00 hkt 9,但返回结果为 dec 21 00:23:18 hkt 9,为什么? 代码如下:
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd.MM.uuuu") .withResolverStyle(ResolverStyle.STRICT); LocalDate localDate = LocalDate.parse("19.12.0009", formatter); Instant instant = Instant.from(localDate.atStartOfDay(ZoneId.of("Asia/Hong_Kong"))); Date resultDate = Date.from(instant); System.out.println("resultDate" + resultDate);
在 zonerules 有一个转换的概念,里面有 savingslocaltransitions
。我发现由于某种原因(可能是历史原因), "asia/hong_kong"
本地转换中的节省从 1904-10-30t00:36:42
开始。 resolverstyle.strict
不是这里的问题!
这就是您看到 00:23:18 hkt 9
的原因。
如果您更改代码,例如:
localdate localdate = localdate.parse("19.12.1904", formatter);
预期输出:
resultDate Mon Dec 19 01:00:00 JST 1904
以上是LocalDate.parse 与 ResolverStyle.STRICT,对于亚洲/香港,返回意外结果的详细内容。更多信息请关注PHP中文网其他相关文章!