在Java8中使用时区格式化LocalDateTime


121

我有这个简单的代码:

DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z");
LocalDateTime.now().format(FORMATTER)

然后我将得到以下异常:

java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: OffsetSeconds
at java.time.LocalDate.get0(LocalDate.java:680)
at java.time.LocalDate.getLong(LocalDate.java:659)
at java.time.LocalDateTime.getLong(LocalDateTime.java:720)
at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298)
at java.time.format.DateTimeFormatterBuilder$OffsetIdPrinterParser.format(DateTimeFormatterBuilder.java:3315)
at java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2182)
at java.time.format.DateTimeFormatter.formatTo(DateTimeFormatter.java:1745)
at java.time.format.DateTimeFormatter.format(DateTimeFormatter.java:1719)
at java.time.LocalDateTime.format(LocalDateTime.java:1746)

如何解决这个问题?

Answers:


212

LocalDateTime是没有时区的日期时间。您以格式指定了时区偏移格式符号,但是LocalDateTime没有此类信息。这就是为什么发生错误。

如果您需要时区信息,请使用ZonedDateTime

DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z");
ZonedDateTime.now().format(FORMATTER);
=> "20140829 14:12:22.122000 +09"

3
超级有帮助。不知道我会这么容易抓到时区。好答案。谢谢!
Laran Evans

40

JSR-310(在Java-8中又称为java.time-package)中的前缀“ Local”并不表示该类的内部状态(此处为LocalDateTime)中存在时区信息。尽管名称经常令人误解,但此类仍喜欢LocalDateTimeLocalTime没有时区信息或偏移量

您试图使用偏移信息(由模式符号Z表示)格式化这种时间类型(不包含任何偏移)。因此,格式化程序尝试访问不可用的信息,并且必须抛出您观察到的异常。

解:

使用具有此类偏移量或时区信息的类型。在JSR-310中,它可以是OffsetDateTime(包含偏移量但不包含DST规则的时区)或ZonedDateTime。您可以通过在isSupported(TemporalField)方法上查找来监视此类类型的所有受支持字段。和中OffsetSeconds支持此字段,但中不支持。OffsetDateTimeZonedDateTimeLocalDateTime

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z");
String s = ZonedDateTime.now().format(formatter);

您将使用什么前缀替换前缀“ Local”以避免混淆?
马修

@Matthew 瑞士信贷银行也发起了一场辩论,讨论了名称PlainDateTime等问题。也许更好,因为前缀“ plain”确实表明除了日期时间之外没有别的。如果我们还没有使用Java v1.0,那么没有前缀会更好,但是Date旧的JDK已经保留了诸如etc之类的名称。
Meno Hochschild

-4

LocalDateTime.now()。format(DateTimeFormatter.ofPattern(“ yyyyMMdd HH:mm:ss.SSSSSS Z”));

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.