我正在尝试将此日期转换为其他格式。不幸的是,他们成功地解析了日期并正确地保留了所有信息。
06-Dec-2017 07:14:56.656PM 至 2017-12-06 19:14:56.656
如果我尝试解析输入日期
LocalDateTime.parse("06-Dec-2017 07:14:56.656PM",
DateTimeFormatter.ofPattern("D-MMM-yyyy HH:mm:ss.SSSa"));
我收到以下错误 - 不确定这是什么意思?
Exception in thread "main" java.time.format.DateTimeParseException: Text '06-Dec-2017 07:14:56.656PM' could not be parsed: Conflict found: Field MonthOfYear 1 differs from MonthOfYear 12 derived from 2017-01-06
at java.time.format.DateTimeFormatter.createError(Unknown Source)
at java.time.format.DateTimeFormatter.parse(Unknown Source)
at java.time.LocalDateTime.parse(Unknown Source)
at com.cordys.coe.alf.logger.DBLogger.main(DBLogger.java:366)
Caused by: java.time.DateTimeException: Conflict found: Field MonthOfYear 1 differs from MonthOfYear 12 derived from 2017-01-06
at java.time.format.Parsed.crossCheck(Unknown Source)
at java.time.format.Parsed.crossCheck(Unknown Source)
如果尝试
System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS")
.format((new SimpleDateFormat("DD-MMM-yyyy HH:mm:ss.SSSa")
.parse("06-Dec-2017 07:14:56.656PM"))));
它给出了令人困惑的以下内容,可能不正确。 2017-01-06 07:14:56:656
答案 0 :(得分:4)
你有2个问题
D
表示一年中的某一天
d
表示日期
H
表示小时(0-23)
h
代表上午时钟小时(1-12)
请将D-MMM-yyyy HH:mm:ss.SSSa
更改为d-MMM-yyyy hh:mm:ss.SSSa
有关详细信息,请查看oracle docs