将 Instant 格式化为 String 时出现 UnsupportedTemporalTypeException

新手上路,请多包涵

我正在尝试使用新的 Java 8 Date and Time API 和以下模式将 Instant 格式化为 String:

 Instant instant = ...;
String out = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(instant);

使用上面的代码我得到一个异常,它抱怨一个不受支持的字段:

 java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: YearOfEra
    at java.time.Instant.getLong(Instant.java:608)
    at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298)
    ...

原文由 Dag 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.6k
2 个回答

时区

要格式化 Instant 需要 时区。没有时区,格式化程序不知道如何将即时日期时间字段转换为人类日期时间字段,因此会抛出异常。

可以使用 withZone() 将时区直接添加到格式化程序中。

 DateTimeFormatter formatter =
    DateTimeFormatter.ofLocalizedDateTime( FormatStyle.SHORT )
                     .withLocale( Locale.UK )
                     .withZone( ZoneId.systemDefault() );

如果您特别想要一个没有明确时区的 ISO-8601 格式(如 OP 所要求的那样), 并且时区隐式为 UTC ,您需要

DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneId.from(ZoneOffset.UTC))

生成字符串

现在使用该格式化程序生成 Instant 的字符串表示形式。

 Instant instant = Instant.now();
String output = formatter.format( instant );

转储到控制台。

 System.out.println("formatter: " + formatter + " with zone: " + formatter.getZone() + " and Locale: " + formatter.getLocale() );
System.out.println("instant: " + instant );
System.out.println("output: " + output );

运行时。

 formatter: Localized(SHORT,SHORT) with zone: US/Pacific and Locale: en_GB
instant: 2015-06-02T21:34:33.616Z
output: 02/06/15 14:34

原文由 JodaStephen 发布,翻译遵循 CC BY-SA 4.0 许可协议

public static void main(String[] args) {

    DateTimeFormatter DATE_TIME_FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
            .withZone(ZoneId.systemDefault());

    System.out.println(DATE_TIME_FORMATTER.format(new Date().toInstant()));

}

原文由 Stackoverflow 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏