在Java8中使用时区格式化LocalDateTime
我有这个简单的代码:
DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z");LocalDateTime.now().format(FORMATTER)
然后我将得到以下异常:
java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: OffsetSecondsat 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
是没有时区的日期时间。您以格式指定了时区偏移格式符号,但是LocalDateTime
没有此类信息。这就是为什么发生错误。
如果您需要时区信息,请使用ZonedDateTime
。
DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyyMMdd HH:mm:ss.SSSSSS Z");ZonedDateTime.now().format(FORMATTER);
=> "20140829 14:12:22.122000 +09"
以上是 在Java8中使用时区格式化LocalDateTime 的全部内容, 来源链接: utcz.com/qa/430936.html