我目前收到此错误,我真的不知道为什么
java.time.format.DateTimeParseException: Text '21:5:20' could not be parsed at index 3
at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1949)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
at java.time.LocalTime.parse(LocalTime.java:441)
...
这是我用来解析的方法。
public static ZonedDateTime parse(String fecha, String pattern) {
DateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_TIME;
LocalTime date = LocalTime.parse(fecha, formatter);
return ZonedDateTime.of(LocalDateTime.of(LocalDate.now(), date), ZoneId.systemDefault());
}
我需要返回 a ZonedDateTime
,因此我正在做我正在做的事情。该错误表明它似乎从文件中读取了正确的时间21:5:20
,这看起来是有效的,但由于某种原因它无法解析它。
我真的不知道我做错了什么。与此类似的问题是指日期,而不是时间。
我知道这似乎是一个微不足道的问题,但我真诚地感谢 Java 专家的帮助。先感谢您。