Po prostu próbuję przekonwertować ciąg daty na obiekt DateTime w Javie 8. Po uruchomieniu następujących wierszy:
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
LocalDateTime dt = LocalDateTime.parse("20140218", formatter);
Otrzymuję następujący błąd:
Exception in thread "main" java.time.format.DateTimeParseException:
Text '20140218' could not be parsed:
Unable to obtain LocalDateTime from TemporalAccessor:
{},ISO resolved to 2014-02-18 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1918)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1853)
at java.time.LocalDateTime.parse(LocalDateTime.java:492)
Składnia jest identyczna z tą, która została tu zasugerowana , ale obsługiwany jestem z wyjątkiem. Używam JDK-8u25
.
LocalDate
i nieLocalDateTime
. Problem polegał na tym, że stworzyłemDateTimeFormatter
użycie.withResolverStyle(ResolverStyle.STRICT);
, więc musiałem użyć wzorca datyuuuuMMdd
zamiastyyyyMMdd
(tj. „Rok” zamiast „roku ery”)!