我尝试使用Java 8的java.time.format.DateTimeFormatter
将格式化的字符串解析为java.time.LocalTime
对象。但是,我在解析一些输入字符串时遇到了一些问题。当我的输入字符串有" AM"它解析正确,但当我的字符串有" PM"它引发了一个例外。这是一个简单的例子:
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
public class FormatterExample {
private static final DateTimeFormatter timeFormatter = DateTimeFormatter.ofPattern("HH:mm a");
public static void main(String[] args) {
parseDateAndPrint("08:06 AM");
parseDateAndPrint("08:06 PM");
}
public static void parseDateAndPrint(String time) {
LocalTime localTime = LocalTime.parse((time), timeFormatter);
System.out.println(localTime.format(timeFormatter));
}
}
输出:
08:06 AM
Exception in thread "main" java.time.format.DateTimeParseException: Text '08:06 PM' could not be parsed: Conflict found: Field AmPmOfDay 0 differs from AmPmOfDay 1 derived from 08:06
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1919)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1854)
at java.time.LocalTime.parse(LocalTime.java:441)
at FormatterExample.parseDateAndPrint(FormatterExample.java:11)
at FormatterExample.main(FormatterExample.java:8)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
Caused by: java.time.DateTimeException: Conflict found: Field AmPmOfDay 0 differs from AmPmOfDay 1 derived from 08:06
at java.time.format.Parsed.crossCheck(Parsed.java:582)
at java.time.format.Parsed.crossCheck(Parsed.java:563)
at java.time.format.Parsed.resolve(Parsed.java:247)
at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1954)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1850)
... 8 more
因此08:06 AM
被正确解析,但是08:06 PM
抛出DateTimeParseException并带有消息:
Text '08:06 PM' could not be parsed: Conflict found: Field AmPmOfDay 0 differs from AmPmOfDay 1 derived from 08:06
但这就是我被卡住的地方..我不确定那个错误究竟意味着什么,但它肯定与我输入字符串的AM / PM部分有关。我也试过寻找类似的错误,但我找不到任何东西。我有一种感觉,我可能会在定义格式化程序模式时犯下一个简单的错误,但是我被卡住了。任何帮助将不胜感激!
答案 0 :(得分:31)
您使用了错误的模式,H
小时(0-23);你需要h
。
错误告诉您H
24小时小时,因此8
显然是AM。因此,当你告诉解析器在24小时制时使用8
并告诉解析它是PM时它会爆炸。
简而言之,请阅读the documentation。
答案 1 :(得分:4)
模式符号H代表24小时制。所以解析器在“PM”的情况下告诉你“08” - 小时只能在AM的范围内,即上半天。
解决方案:使用模式符号“h”代替(12小时制)。