我正在尝试使用以下代码将字符串Wed July 2019 10:53 PM
转换为LocalDateTime
对象:
String dateAndTimeAsStr = "Wed July 2019 10:53 PM";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE MMMM yyyy h:mm a");
LocalDateTime dateAndTimeAsLocalDateTime = LocalDateTime.parse(dateAndTimeAsStr, formatter);
但是,当我运行此代码时,出现以下错误:
Exception in thread "main" java.time.format.DateTimeParseException: Text 'Wed July 2019 10:53 PM' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {DayOfWeek=3, MonthOfYear=7, Year=2019},ISO resolved to 22:53 of type java.time.format.Parsed
将yyyy
更改为YYYY
,将h
更改为hh
不会产生任何不同的结果。
根据this answer on SO和the documentation,看来我的模式与提供的文本匹配。
我在做什么错了?
谢谢
答案 0 :(得分:5)
您的输入字符串缺少月份。它说的是“ 2019年7月”,而不是7月内的天。
格式化的日期字符串是不可逆的(因为您可以使用格式化程序格式化现有的LocalDateTime,但不能将其解析回去)。因为它缺少日值。