LocalDateTime.parse("2017-02-02 08:59:12", DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss"));
打印错误:
java.time.format.DateTimeParseException: Text '2017-02-02 08:59:12' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {MinuteOfHour=59, NanoOfSecond=0, SecondOfMinute=12, MicroOfSecond=0, MilliOfSecond=0, HourOfAmPm=8},ISO resolved to 2017-02-02 of type java.time.format.Parsed
Accoeding消息看起来所有值都被解析正确,但无论如何我看到错误。
如何让它运作?
答案 0 :(得分:11)
我只能重现你在尝试解析LocalDateTime
时得到的异常,所以我认为这就是你想要的。
您的错误是使用hh
(上午时钟小时)而不是HH
(一天中的小时)。这有效:
LocalDateTime ldt = LocalDateTime.parse("2017-02-02 08:59:12", DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
System.out.println(ldt);
并打印:
2017-02-02T08:59:12