7
인스턴트를 문자열로 형식화
새로운 java 8 time-api와 패턴을 사용하여 Instant to String을 형식화하려고합니다. Instant instant = ...; String out = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").format(instant); 위의 코드를 사용하면 지원되지 않는 필드를 불평하는 예외가 발생합니다. java.time.temporal.UnsupportedTemporalTypeException: Unsupported field: YearOfEra at java.time.Instant.getLong(Instant.java:608) at java.time.format.DateTimePrintContext.getValue(DateTimePrintContext.java:298) ...