오늘 날짜를 문자 YYYYMMDD 포맷으로 나오게 하는 방법
import java.util.Calendar;
import java.text.SimpleDateFormat;
public class testToday{
public static void main(String args[]){
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
Calendar c1 = Calendar.getInstance();
String strToday = sdf.format(c1.getTime());
System.out.println("Today=" + strToday);
}
}
'java' 카테고리의 다른 글
java 현재시간과 시간 지연 (0) | 2014.03.18 |
---|---|
ResultSet rowcount 구하기 (0) | 2014.03.14 |
ORA-01861: literal does not match format string 오류발생.. (0) | 2014.02.28 |
java String -> hex 변환 (0) | 2014.02.20 |
java String <-> int 변환 (0) | 2014.02.19 |