1

简单版:

我需要能够仅使用一个org.threeten.bp.format.DateTimeFormatter对象来解析两种类型的时间戳字符串。

模式 1(“YYYY-MM-DD HH:mm:ss.SSSSSS”——此代码有效):

DateTimeFormatter dtf = DateTimeFormatter.ofPattern("YYYY-MM-DD HH:mm:ss.SSSSSS");
System.out.println(dtf.parse("2020-06-30 20:20:42.871216"));

模式 2(“YYYY-MM-DD'T'HH:mm:ss.SSS'Z'”——此代码也有效):

DateTimeFormatter dtf = DateTimeFormatter.ofPattern("YYYY-MM-DD'T'HH:mm:ss.SSS'Z'");
System.out.println(dtf.parse("2020-06-30T20:20:42.871Z"));

但我需要一个对象来解析两者(这不起作用,显然哈哈):

DateTimeFormatter dtf = DateTimeFormatter
        .ofPattern("YYYY-MM-DD HH:mm:ss.SSSSSS")
        .andThisPattern("YYYY-MM-DD'T'HH:mm:ss.SSS'Z'");
System.out.println(dtf.parse("2020-06-30 20:20:42.871216"));
System.out.println(dtf.parse("2020-06-30T20:20:42.871Z"));

我尝试了几件事,这是最新的尝试:

DateTimeFormatterBuilder dtfb = new DateTimeFormatterBuilder();
DateTimeFormatter dtf = dtfb
        .appendPattern("YYYY-MM-DD HH:mm:ss.SSSSSS")
        .appendPattern("YYYY-MM-DD'T'HH:mm:ss.SSS'Z'")
        .toFormatter();

System.out.println(dtf.parse("2020-06-30 20:20:42.871216"));
System.out.println(dtf.parse("2020-06-30T20:20:42.871Z"));

但这没有用。我所做的一切似乎都不允许单个对象解析两种类型。

有没有办法做到这一点?

更大的上下文(Swagger codegen):

我有一个使用 Java Swagger 代码生成与 Web 服务交互的应用程序。来自 Web 服务的 JSON 响应包含两种时间戳格式(见上文)。在我的应用程序的某个时刻,我调用 JSON#deserialize 尝试使用(可配置的)DateTimeFormatter 对象。但是,在您拨打电话之前不可能知道您将拥有哪种时间戳格式。

2020-07-06 18:53:45 ERROR PartyContactMethodsControllerEmail:352 - org.threeten.bp.format.DateTimeParseException: Text '2020-07-06 18:53:45.449445' could not be parsed at index 10
    at org.threeten.bp.format.DateTimeFormatter.parseToBuilder(DateTimeFormatter.java:1587)
    at org.threeten.bp.format.DateTimeFormatter.parse(DateTimeFormatter.java:1491)
    at org.threeten.bp.OffsetDateTime.parse(OffsetDateTime.java:359)
    at webservice.com.webapp.invoker.JSON$OffsetDateTimeTypeAdapter.read(JSON.java:183)
    at webservice.com.webapp.invoker.JSON$OffsetDateTimeTypeAdapter.read(JSON.java:1)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:129)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:220)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:129)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:220)
    at com.google.gson.Gson.fromJson(Gson.java:887)
    at com.google.gson.Gson.fromJson(Gson.java:852)
    at com.google.gson.Gson.fromJson(Gson.java:801)
    at webservice.com.webapp.invoker.JSON.deserialize(JSON.java:133)
    at webservice.com.webapp.invoker.ApiClient.deserialize(ApiClient.java:711)
    at webservice.com.webapp.invoker.ApiClient.handleResponse(ApiClient.java:914)
    at webservice.com.webapp.invoker.ApiClient.execute(ApiClient.java:841)
    ...

因此,当desearialize调用发现它不期望的时间戳格式时,它无法成功解析 JSON 响应。

再次提出原始问题:如何将 DateTimeFormatter 配置为(在调用反序列化之前)不会阻塞时间戳格式?有没有办法可以配置/与 Swagger 代码生成接口以适应服务器的响应?

4

1 回答 1

3

您所问的基本挑战是这两种格式不能传达兼容的信息。2020-06-30 20:20:42.871216是没有时区或 UTC 偏移量的日期和时间。它可能表示某个时间点,但我们无法正确解释它,除非我们知道哪个时区是正确的。另一方面,尾随Z2020-06-30T20:20:42.871ZUTC 零形式的偏移量,所以这里我们有提供给我们的信息。

在下面的代码片段中,我假设在 UTC 中也可以理解没有 UTC 偏移的格式。

    DateTimeFormatter singleFormatter = new DateTimeFormatterBuilder()
            .append(DateTimeFormatter.ISO_LOCAL_DATE)
            .appendPattern("[ ]['T']")
            .append(DateTimeFormatter.ISO_LOCAL_TIME)
            .appendPattern("[X]")
            .parseDefaulting(ChronoField.OFFSET_SECONDS, 0)
            .toFormatter();

    OffsetDateTime odt1 = OffsetDateTime.parse("2020-06-30 20:20:42.871216", singleFormatter);
    System.out.println(odt1);
    
    OffsetDateTime odt2 = OffsetDateTime.parse("2020-06-30T20:20:42.871Z", singleFormatter);
    System.out.println(odt2);

输出是:

2020-06-30T20:20:42.871216Z
2020-06-30T20:20:42.871Z

T我通过格式模式字符串中的可选元素处理日期和时间之间的空格和 a 之间的区别。任何用方括号括起来的东西都被认为是可选的,所以[ ]['T']解析一个可选的空格,后跟一个可选的文字T。小数位数的变化很容易,因为内置DateTimeFormatter.ISO_LOCAL_TIME处理了这个。这是我想使用构建器的主要原因:它允许我将其他格式化程序构建到我正在构建的格式化程序中。最后,可选的偏移量通过一组新的方括号来处理。大写X解析一个可以作为Z零给出的偏移量。由于Z是偏移量,因此您绝不能使用硬编码文字Z用于解析它,因为这会丢弃偏移信息。解析偏移量允许我将整个字符串解析为OffsetDateTime. 只有当其他格式没有偏移时,这怎么可能?调用parseDefaulting()指定在没有解析时使用的偏移量。

于 2020-07-07T19:04:43.527 回答