문서 | 날짜 | 사용자 | 설명 |
---|---|---|---|
2020/04/01 16:03 | 주레피 | 날짜 관련 * description : 자바에서 날짜 관련 자료 * author : 주레피 * email : dhan@repia.com * lastupdate : 2020-04-01 Date Format 유형 yyyy.MM.dd HH:mm:ss.S Class SimpleDateFormat Calendar 1. 사용법 Calendar cal = Calendar.getInstance(); int year = cal.get(Calendar.YEAR); int mon = cal.get(Calendar.MONTH); int day = cal.get(Calendar.DAY_OF_MONTH); int hour = cal.get(Calendar.HOUR_OF_DAY); int min = cal.get(Calendar.MINUTE); int sec = cal.get(Calendar.SECOND); System.out… |