java.time.format.DateTimeParseException:无法在索引 21 处解析文本

2022-09-01 05:54:59

我得到的日期时间值为

created_at  '2012-02-22T02:06:58.147Z'
Read-only. The time at which this task was created.

这是由Asana API给出

我正在使用解析日期时间,如下所示Java 8

import java.time.*;
import java.time.format.*;

public class Times {

  public static void main(String[] args) {
    final String dateTime = "2012-02-22T02:06:58.147Z";
    DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'hh:mm:ss.SX");


    final ZonedDateTime parsed = ZonedDateTime.parse(dateTime, formatter);
    System.out.println(parsed);
  }
}

当我运行这个,我得到以下错误

Exception in thread "main" java.time.format.DateTimeParseException: Text '2012-02-22T02:06:58.147Z' could not be parsed at index 21
    at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1947)
    at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1849)
    at java.time.ZonedDateTime.parse(ZonedDateTime.java:597)
    at Times.main(Times.java:11)
    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:497)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

这里有什么不对吗?


答案 1

默认解析器可以解析您的输入。因此,您不需要自定义格式化程序,并且

String dateTime = "2012-02-22T02:06:58.147Z";
ZonedDateTime d = ZonedDateTime.parse(dateTime);

按预期工作。


答案 2

如果您的输入始终具有“zulu”时区(“Z”= UTC),则可以使用(隐式):DateTimeFormatter.ISO_INSTANT

final Instant parsed = Instant.parse(dateTime);

如果时区变化并且具有“+01:00”或“+01:00:00”的形式(当不是“Z”时),则可以使用:DateTimeFormatter.ISO_OFFSET_DATE_TIME

DateTimeFormatter formatter = DateTimeFormatter.ISO_OFFSET_DATE_TIME;
final ZonedDateTime parsed = ZonedDateTime.parse(dateTime, formatter);

如果两者都不是,则可以按照构造的相同方式构造 。DateTimeFormatterDateTimeFormatter.ISO_OFFSET_DATE_TIME


您当前的模式存在几个问题:

  • 不使用严格模式(ResolverStyle.STRICT);
  • 使用代替 ( 将不能在严格模式下工作);yyyyuuuuyyyy
  • 使用 12 小时而不是 24 小时hhHH;
  • 仅使用一位数字表示小数秒,但输入有三位数字。S