DateTimeParseException 썸네일형 리스트형 java.time.format.DateTimeParseException (...could not be parsed: Unable to obtain LocalDate from TemporalAccessor) 년월 데이터를 처리하기 위해 LocalDate를 사용하고 있던중, 문자열을 LocalDate로 변환할 일이 있어 별 생각 없이 LocalDate.parse(문자열, DateTimeFormatter)함수를 사용했다. String yearMonthString = "202210"; LocalDate yearMonth = LocalDate.parse(yearMonthString, DateTimeFormatter.ofPattern("yyyyMM")); 결과... java.time.format.DateTimeParseException: Text '202210' could not be parsed: Unable to obtain LocalDate from TemporalAccessor: {Year=2022, Mont.. 더보기 이전 1 다음