OffsetDateTime - 打印偏移量而不是 Z

OffsetDateTime - print offset instead of Z

我有这个代码:

String date = "2019-04-22T00:00:00+02:00";

OffsetDateTime odt = OffsetDateTime
      .parse(date, DateTimeFormatter.ISO_OFFSET_DATE_TIME)                             
      .withOffsetSameInstant(ZoneOffset.of("+00:00"));

System.out.println(odt);

此打印:2019-04-21T22:00Z

如何打印 2019-04-21T22:00+00:00?使用偏移量而不是 Z.

None 的静态 DateTimeFormatter 在标准库中执行此操作。 它们默认为 ZGMT.

要实现 +00:00 无偏移,您将必须构建自己的 DateTimeFormatter

ZonedDateTime now = ZonedDateTime.now(ZoneId.of("UTC"));

DateTimeFormatter dateTimeFormatter = new DateTimeFormatterBuilder()
        .append(ISO_LOCAL_DATE_TIME) // use the existing formatter for date time
        .appendOffset("+HH:MM", "+00:00") // set 'noOffsetText' to desired '+00:00'
        .toFormatter();

System.out.println(now.format(dateTimeFormatter)); // 2019-12-20T17:58:06.847274+00:00

我的版本是:

    DateTimeFormatter outputFormatter = DateTimeFormatter.ofPattern("uuuu-MM-dd'T'HH:mm:ssxxx");

    String date = "2019-04-22T00:00:00+02:00";

    OffsetDateTime odt = OffsetDateTime
          .parse(date)                             
          .withOffsetSameInstant(ZoneOffset.UTC);

    System.out.println(odt.format(outputFormatter));

输出是期望的:

2019-04-21T22:00:00+00:00

toString() 以不需要的格式输出时,答案是使用 DateTimeFormatter 格式化为所需的格式。格式模式字符串中的小写字母 xxx 生成以小时和分钟格式显示的带有冒号的偏移量,当偏移量为 0 时也是如此。

虽然 OffsetDateTime.toString() 没有生成您想要的格式,但 OffsetDateTime 仍然可以在没有任何显式格式化程序的情况下解析它。所以在我的代码版本中,我将其遗漏了。

已经为 ZoneOffset.of("+00:00") 声明了一个常量,我更喜欢使用它:ZoneOffset.UTC.