1. 날짜와 시간 1.1 Calendar와 Date Calendar는 추상클래스이기 때문에 직접 객체 생성할 수 없고, 메서드를 통해서 완전히 구현된 클래스의 인스턴스를 얻어야 한다. Calendar cal = Calendar.getInstance(); //Calendar를 Date로 변환 Calendar cal = Calendar.getInstance(); Date d = new Date(cal.getTimeInMillis()); //Date를 Calendar로 변환 Date d = new Date(); Calendar cal = Calendar.getInstace(); cal.setTime(d) 주의할 점: get(Calendar.MONTH)로 얻어오는 값의 범위가 1~12가 아닌 0~11이다, 2...