时区
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