PL
Java 8 poprawka dotycząca wyjątku podczas korzystania z formatu LocalDateTime.now() ze strefą Z - java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: OffsetSeconds
3
points
1. Opis problemu
Chciałbym teraz sformatować datę od LocalDateTime.now()
ze wzorem formatyzatora
yyyy-MM-dd HH:mm Z
Pełny kod, który zgłasza wyjątek UnsupportedTemporalTypeException:
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class DateTimeFormatter_UnsupportedTemporalTypeException {
public static void main(String[] args) {
DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm Z");
String format = fmt.format(LocalDateTime.now());
System.out.println(format);
}
}
Kiedy uruchamiam ten kod, otrzymuję następujący stacktrace:
Exception in thread "main" 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:3346)
at java.time.format.DateTimeFormatterBuilder$CompositePrinterParser.format(DateTimeFormatterBuilder.java:2190)
at java.time.format.DateTimeFormatter.formatTo(DateTimeFormatter.java:1746)
at java.time.format.DateTimeFormatter.format(DateTimeFormatter.java:1720)
2. Rozwiązanie
// aby rozwiązać ten wyjątek użyj:
ZonedDateTime.now()
// np.:
String format = fmt.format(ZonedDateTime.now());
// zamiast używać:
LocalDateTime.now()
Przykład pełnego działającego kodu:
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
public class DateTimeFormatter_UnsupportedTemporalTypeException_Solution {
public static void main(String[] args) {
DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm Z");
String format = fmt.format(ZonedDateTime.now());
System.out.println(format); // 2019-10-04 22:55 +0200
}
}
Wynik:
2019-10-04 22:55 +0200