import java.util.*;
class Test{
public static void main(String[] args){
Calendar today = Calendar.getInstance();
System.out.println("Year : " +today.get(Calendar.YEAR));
System.out.println("Month : " +today.get(Calendar.MONTH));
System.out.println("이 해의 몇 째 주 : " +today.get(Calendar.WEEK_OF_YEAR));
System.out.println("이 달의 몇 째 주 : " +today.get(Calendar.WEEK_OF_MONTH));
System.out.println("이 달의 몇 일 " +today.get(Calendar.DATE));
System.out.println("이 해의 몇 일 " +today.get(Calendar.DAY_OF_YEAR));
System.out.println("요일(1:일요일) " +today.get(Calendar.DAY_OF_WEEK));
System.out.println("오전_오후 " +today.get(Calendar.AM_PM));
System.out.println("시간(0~11) " +today.get(Calendar.HOUR));
System.out.println("시간(0~23) " +today.get(Calendar.HOUR_OF_DAY));
System.out.println("분 " +today.get(Calendar.MINUTE));
System.out.println("초 " +today.get(Calendar.SECOND));
System.out.println("1000분의 1초(0~999) " +today.get(Calendar.MILLISECOND));
System.out.println("TIMEZONE(-12 ~ +12) : " +(today.get(Calendar.ZONE_OFFSET)/(60*60*1000)));
System.out.println("이 달의 마지막 날 : " +today.getActualMaximum(Calendar.DATE));
}
}
Year : 2009
Month : 3
이 해의 몇 째 주 : 18
이 달의 몇 째 주 : 5
이 달의 몇 일 28
이 해의 몇 일 118
요일(1:일요일) 3
오전_오후 0
시간(0~11) 11
시간(0~23) 11
분 23
초 32
1000분의 1초(0~999) 265
TIMEZONE(-12 ~ +12) : 9
이 달의 마지막 날 : 30
'Study > Programming' 카테고리의 다른 글
HTML2 (0) | 2009.05.11 |
---|---|
자바 주민등록번호 체크 (0) | 2009.05.09 |
HTML (0) | 2009.05.08 |
자바 Generic #1 (0) | 2009.04.29 |
자바 String (0) | 2009.04.27 |