[Java] 날짜 변환하기

정나영·2021년 1월 1일
0

문자열로 된 날짜를 Date, Calendar 타입으로 변환하기

SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = format.parse("2021-01-02"); // String -> Date
Calender cal = Calender.getInstance();
cal.setTime(date);  // Date -> Calendar

parse 함수 사용할때 exception 처리안하면 error가 뜰텐데 throws나 try/catch로 처리하면 해결

profile
I can do it!

0개의 댓글