간단한 현재시간 찍기
long startTime = System.currentTimeMillis();
System.out.println("Job 시작 시간 : "+ new Timestamp(startTime));
현재시간 가져오기 : SimpleDateFormat 이용
Calendar calendar = Calendar.getInstance();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmssSSS");
System.out.println("현재 시간 : " + dateFormat.format(calendar.getTime()));
'Development > Java' 카테고리의 다른 글
java - 날짜, 전화번호 format 변경하기 (0) | 2012.07.19 |
---|---|
java - java.lang.NumberFormatException: For input string (1) | 2012.07.19 |
java - java.lang.NullPointerException 에러 (1) | 2012.05.24 |
java - crontab에서 실행 (0) | 2012.05.16 |
java - ORM (0) | 2012.05.15 |