gpt4 book ai didi

time - Java 8 DateTimeFormatter 与可选部分

转载 作者:行者123 更新时间:2023-12-02 11:59:02 24 4
gpt4 key购买 nike

我有一个表示日期(带或不带时间)的字符串,例如 13/12/201713/12/2017 15:39:51

所以我尝试使用 java 8 DateTimeFormatter 和可选部分。

该代码有效

LocalDateTime localDateTime = LocalDateTime.parse("13/12/2017 15:39:51",DateTimeFormatter.ofPattern("dd/MM/yyyy[ HH:mm:ss]"));
System.out.println(localDateTime.format(DateTimeFormatter.ofPattern("dd/MM/yyyy")));
System.out.println(localDateTime.format(DateTimeFormatter.ofPattern("HH:mm:ss")));

13/12/2017
15:39:51

但我不明白为什么那个人不这样做

LocalDateTime localDateTime = LocalDateTime.parse("13/12/2017",DateTimeFormatter.ofPattern("dd/MM/yyyy[ HH:mm:ss]"));

给我

Exception in thread "main" java.time.format.DateTimeParseException: Text '13/12/2017' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {},ISO resolved to 2017-12-13 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1855)
at java.time.LocalDateTime.parse(LocalDateTime.java:492)
...

甚至还有

LocalDateTime localDateTime = LocalDateTime.parse("13/12/2017",DateTimeFormatter.ofPattern("dd/MM/yyyy"));

它不适用于相同的异常。

最佳答案

使用parseBest

当您使用可选组件时,您应该使用parseBest进行解析。您的应用程序可能仅使用 parse 运行,但这只是运气(因为您只解析完整输入,而不是部分输入)。借助parseBest,您可以正确处理各种TemporalAccessor,这就是使用Optional的全部原因。

返回哪个 TemporalAccessor 的决定相当简单:parseBest 将尝试按参数顺序匹配每个 TemporalQuery。当有任何一个匹配时,该方法将返回该匹配。因此,请确保从最精确到不太精确。另外,如果没有匹配,则会抛出异常。

LocalDateTime dateTime;
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy[ HH:mm:ss]");
TemporalAccessor temporalAccessor = formatter.parseBest("13/12/2017", LocalDateTime::from, LocalDate::from);
if (temporalAccessor instanceof LocalDateTime) {
dateTime = (LocalDateTime)temporalAccessor;
} else {
dateTime = ((LocalDate)temporalAccessor).atStartOfDay();
}

关于time - Java 8 DateTimeFormatter 与可选部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48280447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com