자바1 JAVA - LocalDate, LocalTime, LocalDateTime 3개의 클래스 모두 타임존 개념을 가지고 있지 않기 때문에 타임존에 따른 시간 변환이 불가능하다. 3개의 클래스 모두 immutable 타입이다. 자바8 이전의 날짜와 시간 관련 API인 Date, Calender 클래스들은 더이상 사용하지 않습니다. LocalDate (yyyy-MM-dd) //날짜 출력 LocalDate date1 = LocalDate.now(); System.out.println(date1); //2022-04-14 System.out.println(date1.getYear()); //2022 System.out.println(date1.getMonthValue()); //4 System.out.println(date1.getMonth()); //APRIL System.out.pri.. 2022. 4. 18. 이전 1 다음