[Java] Date, Calendar, java.time

얄루얄루·2022년 9월 18일
0

Java

목록 보기
5/7

날찌 시간 관련 클래스

Date (초창기부터 존재, 매우 불편) => Calendar (Date 보다는 낫지만 불편) => java.time package (LocalDate, LocalTime, LocalDateTime, DateTimeFormatter 등의 Class들 지원)

Date, Calendar의 필요성은 더 이상 없어졌지만, 예전부터 사용되어 왔기 때문에 일일이 찾아서 모조리 바꾸기에는 현실적으로 힘들고 효율도 안 나옴 -> 대강 알긴 알아야 함.

Date

대부분의 메소드는 Calendar Class에 의해 대체 되었음.

Date(): 현재 기준으로 Date 객체 생성
Date(int year, int month, int date): 년, 월, 일 기준으로 Date 객체 생성
Date(int year, int month, int date, int hrs, int min, int sec): 년, 월, 일, 시, 분, 초 기준으로 Date 객체 생성
boolean after(Date when): 현 Date가 주어진 when보다 이후인지 반환
boolean before(Date when): 현 Date가 주어진 when보다 이전인지 반환
int compareTo(Date anotherDate): 두 Date 순서 비교
boolean equals(Object obj): 두 Date가 같은지 비교
long getTime(): 년, 월, 일, 요일, 시, 분, 초 모조리 반환
int getYear(): 년 반환
int getMonth(): 월 반환
int getDate(): 일 반환
int getDay(): 요일 반환
int getHours(): 시 반환
int getMinutes(): 분 반환
int getSeconds(): 초 반환

Calendar

getYear, getMonth, setMonth, setSeconds 등을 대부분 get(), set() 하나로 묶고 인자로 Calendar.YEAR 등을 주어 표시하는 것이 특징.

참조: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html

Date getTime() : 전체 시간 Date형으로 반환
Calendar.get(Calendar.YEAR) - 1900 : 년 반환
Calendar.get(Calendar.MONTH) : 월 반환
Calendar.get(Calendar.DAY_OF_MONTH) : 일 반환
Calendar.get(Calendar.DAY_OF_WEEK) : 요일 반환
Calendar.get(Calendar.HOUR_OF_DAY) : 시 반환
Calendar.get(Calendar.MINUTE) : 분 반환
Calendar.get(Calendar.SECOND) : 초 반환

int compareTo(Calendar anotherCalendar): 다른 캘린더와 비교
boolean before(Object when) : return compareTo(c) < 0
boolean after(Object when) : return compareTo(c) > 0

setTimeZone(TimeZone value) : 타임존 설정
TimeZone getTimeZone() : 타임존 반환
setFirstDayOfWeek(int value) : 시작 요일 설정. Calendar.SUNDAY or Calendar.MONDAY etc.
int getFirstDayOfWeek() : 시작 요일 반환

LocalDate

static LocalDate now() : 현재 시간 반환
static LocalDate now(ZoneId zone) : 특정 타임존의 현재 시간 반환
static LocalDate of(int year, int month, int dayOfMonth) : 특정 년, 월, 일 반환
static LocalDate ofEpochDay(long epochDay): epoch day를 변환해서 반환
static LocalDate ofYearDay(int year, int dayOfYear): 특정 년도의 n번째 날을 반환

LocalDate plusYears(long yearsToAdd) : 년에 +n
LocalDate plusMonths(long monthsToAdd) : 월에 +n
LocalDate plusDays(long daysToAdd) : 일에 +n
LocalDate plusWeeks(long weeksToAdd) : 주에 +n
LocalDate minusYears(long yearsToSubtract) : 년에 -n
LocalDate minusMonths(long monthsToSubtract) : 월에 -n
LocalDate minusDays(long daysToSubtract) : 일에 -n
LocalDate minusWeeks(long weeksToSubtract) : 주에 -n

int lengthOfYear() : 객체가 속한 년의 일 수 반환
int lengthOfMonth() : 객체가 속한 월의 일 수 반환
boolean isLeapYear() : 윤년인지 반환
int compareTo(ChronoLocalDate other) : 다른 날짜와 비교

int getYear() : 년 반환
Month getMonth() : 월 반환
int getMonthValue() : 월 숫자로 반환
int getDayOfMonth() : 일 반환
int getDayOfYear() : 해당 년에서 몇 번 째 날인지 반환
DayOfWeek getDayOfWeek() : 요일 반환

LocalDateTime atStartOfDay() : 자정으로 시간 설정해서 형변환
LocalDateTime atTime(LocalTime time) : LocalTime 변수로 시간 설정해서 형변환
LocalDateTime atTime(int hour, int minute) : 특정 시간 설정해서 형변환
LocalDateTime atTime(int hour, int minute, int second) : 이하 동문
LocalDateTime atTime(int hour, int minute, int second, int nanoOfSecond) : 이하 동문

LocalTime

시:분:초:나노초를 다루는 것을 제외하면 LocalDate와 똑같다.

static LocalTime now()
static LocalTime now(ZoneId zone)
static LocalTime of(int hour, int minute, int second)
static LocalTime of(int hour, int minute, int second, int nanoOfSecond)
static LocalTime ofNanoOfDay(long nanoOfDay)
static LocalTime ofSecondOfDay(long secondOfDay)

LocalTime plusHours(long hoursToAdd)
LocalTime plusMinutes(long minutesToAdd)
LocalTime plusSeconds(long secondstoAdd)
LocalTime plusNanos(long nanosToAdd)
LocalTime minusHours(long hoursToSubtract)
LocalTime minusMinutes(long minutesToSubtract)
LocalTime minusSeconds(long secondsToSubtract)
LocalTime minusNanos(long nanosToSubtract)

int getHour()
int getMinute()
int getSecond()
int getNano()

int compareTo(LocalTime other)
boolean isAfter(LocalTime other)
boolean isBefore(LocalTime other)

LocalDateTime atDate(LocalDate date)

LocalDateTime

위의 두 클래스에서 사용되는 메소드들은 전부 사용 할 수 있고, 몇 개의 추가 메소드가 있다.

static LocalDateTime ofInstant(Instant instant, ZoneId zone) : 특정 날짜&시간 객체와 타임존을 받아 LocalDateTime형으로 리턴

String toString() : 문자열로 변환. 별로 안 이뻐서 밑에꺼 많이 쓴다
String format(DateTimeFormatter formatter) : 특정 포맷을 이용해 문자열로 변환

LocalDate toLocalDate() : 형변환
LocalTime toLocalTime() : 형변환
Instant toInstant(ZoneOffset offset) : 형변환. Date.from으로 받을 때 사용.

Date -> LocalDateTime

LocalDateTime ldt = LocalDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault());

LocalDateTime -> Date

Date date = Date.from(LocalDateTime.atZone(ZoneId.systemDefault()).toInstant());
profile
시간아 늘어라 하루 48시간으로!

0개의 댓글

관련 채용 정보