gpt4 book ai didi

java - 将 Instant 格式化为 String 时出现 UnsupportedTemporalTypeException

转载 作者:太空宇宙 更新时间:2023-11-04 09:26:40 27 4
gpt4 key购买 nike

我正在尝试使用新的 Java 8 日期和时间 API 以及以下模式将 Instant 格式化为字符串:

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)
...

最佳答案

时区

格式化 Instant一个time-zone是必须的。如果没有时区,格式化程序不知道如何将即时转换为人类日期时间字段,因此会引发异常。

时区可以使用 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

关于java - 将 Instant 格式化为 String 时出现 UnsupportedTemporalTypeException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57613228/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com