2010. 6. 28. 14:55
매번 까먹고 다시 만들고.. 머릿속의 지우개는 어떻게 하지 못하는 건지.... 쩌ㅃ~
- format 을 맞춰주면 오늘 날짜/시간을 가져온다. 밀리세컨드 까징..
- 뭐 나오세컨드 까지 나온듯 싶지만.. 고넘은 벌써 까먹음.. 다음에 기회가 생기면 그때.. 쩌ㅃ~
/**
*
* @param format
* ex> format : yyyyMMddHHmmssSSS
* @return
*/
public static String getCurrentTime_0(String format) {
Calendar calendar = Calendar.getInstance();
SimpleDateFormat dateFormat = new SimpleDateFormat(format);
return dateFormat.format(calendar.getTime());
}
public static String getCurrentTime_1(String format) {
DateFormat df = new SimpleDateFormat(format); // HH=24h, hh=12h
return df.format(System.currentTimeMillis());
}
*
* @param format
* ex> format : yyyyMMddHHmmssSSS
* @return
*/
public static String getCurrentTime_0(String format) {
Calendar calendar = Calendar.getInstance();
SimpleDateFormat dateFormat = new SimpleDateFormat(format);
return dateFormat.format(calendar.getTime());
}
public static String getCurrentTime_1(String format) {
DateFormat df = new SimpleDateFormat(format); // HH=24h, hh=12h
return df.format(System.currentTimeMillis());
}
- format 을 맞춰주면 오늘 날짜/시간을 가져온다. 밀리세컨드 까징..
- 뭐 나오세컨드 까지 나온듯 싶지만.. 고넘은 벌써 까먹음.. 다음에 기회가 생기면 그때.. 쩌ㅃ~
'java > util' 카테고리의 다른 글
[java] - 가변인자(??) (0) | 2010.06.28 |
---|---|
[InputStream] - readStringFromStream, readBytesFromStream (0) | 2010.06.28 |
[replaceAll] - 문자열 치환 (0) | 2010.06.28 |
[java] NumberFormat 을 사용해서 double 가독성 있게 표현하기 (0) | 2010.06.25 |
[정규식] - Pattern 을 사용한 Validate (0) | 2010.06.25 |