使用Java8中的时区格式LocalDateTime
我有这个简单的代码:
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)
如何解决这个问题?
LocalDateTime
是没有时区的date时间。 您在格式中指定了时区偏移格式符号,但是LocalDateTime
没有这种信息。 这就是错误发生的原因。
如果你想要时区信息,你应该使用ZonedDateTime
。
DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z"); ZonedDateTime.now().format(FORMATTER) => "20140829 14:12:22.122000 +09"
JSR-310中的前缀“Local”(也就是Java-8中的java.time-package)并不表示该类的内部状态(此处为LocalDateTime
)中存在时区信息。 尽pipe像LocalDateTime
或LocalTime
这样的类经常有误导性的名称, 但没有时区信息或偏移量 。
您尝试使用偏移量信息(由模式符号Z表示)来格式化这种时间types(不包含任何偏移量)。 所以格式化程序试图访问一个不可用的信息,必须抛出你观察到的exception。
解:
使用具有这种偏移或时区信息的types。 在JSR-310中,这可以是OffsetDateTime
(包含偏移量,但不包含DST规则的时区)或ZonedDateTime
。 你可以通过查找方法isSupported(TemporalField)来注意这种types的所有支持的字段。 。 OffsetDateTime
和ZonedDateTime
支持OffsetDateTime
ZonedDateTime
,但不支持LocalDateTime
。
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z"); String s = ZonedDateTime.now().format(formatter);