'JAVA'에 해당되는 글 51건
- 2008.10.30 long 형태의 시간을 Date형태로 변경하는 함수
2008. 10. 30. 15:19
long 형태의 시간을 Date형태로 변경하는 함수
2008. 10. 30. 15:19 in JAVA
public static void stopWatch(String state){
long time = System.currentTimeMillis();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String strDate = df.format(time);
System.out.println(state + " 시간 : " + strDate);
}