在Java8中使用Timezone格式化LocalDateTime

时间:2014-08-29 03:42:56

标签: java java-8 java-time

我有这个简单的代码:

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)

如何解决此问题?

4 个答案:

答案 0 :(得分:146)

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

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

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

答案 1 :(得分:36)

JSR-310中的前缀“Local”(也称为Java-8中的java.time-package)并不表示该类的内部状态中存在时区信息(此处为:LocalDateTime)。尽管名称经常具有误导性,但 LocalDateTimeLocalTime等类别没有时区信息或偏移量

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

解决方案:

使用具有此类偏移或时区信息的类型。在JSR-310中,这是OffsetDateTime(包含偏移但不包含DST规则的时区)或ZonedDateTime。您可以通过查找方法isSupported(TemporalField).来注意此类型的所有受支持字段。 OffsetSecondsOffsetDateTime支持ZonedDateTime字段,但LocalDateTime不支持。

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

答案 2 :(得分:0)

下面的代码将格式化GST + 4时区。

ZonedDateTime dateTime = ZonedDateTime.now(ZoneId.of("Asia/Dubai"));
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("d MMM yyyy HH:mm");
return dateTime.format(formatter);

输出将为:

30 Dec 2019 15:25

答案 3 :(得分:-1)

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