JAVA 의 System 클래스와 Calendar, SimpleDateFormat 클래스를 이용하여, 현재 날짜 및 시간을 가져올 수 있습니다.
- 간단하게 아래와 같이 작성할 수 있고,
1: long startTime = System.currentTimeMills();
2: System.out.println("현재 시간: " + new Timestamp(startTime());
- 혹은 아래와 같이 사용자의 편의에 따라 사용할 수 있습니다.
1: Calendar calendar = Calendar.getInstance();2:3: SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmssSSS");4:5: System.out.println("현재 시간: " + dateFormat.format(calendar.getTime());
'Languages > Java' 카테고리의 다른 글
Java-HTTPS 통신 (링크) (0) | 2013.10.18 |
---|---|
Java-HTTPS 주소의 파일 다운로드 (0) | 2013.10.16 |
Bad version number in .class file` faultDetail:`null` (0) | 2012.08.15 |
JAVA excute / excuteUpdate / excuteQuery 차이점 (0) | 2012.08.15 |
JAVA - JDBC, Supported Database, JDBC Drivers, and Deployment Containers (0) | 2012.08.15 |