Memory Drive

반응형
 
  1. import java.util.Calendar;
  2. import java.util.Date;
  3. class CalendarExam {
  4.   public static void main(String args[]) {
  5.     Calendar calendar = Calendar.getInstance();
  6.    
  7.     System.out.print( calendar.get(Calendar.YEAR) + "년  ");
  8.    
  9.     System.out.print( calendar.get(Calendar.MONTH)+1 + "월  ");
  10.    
  11.     System.out.print( calendar.get(Calendar.DAY_OF_MONTH) + "일  ");
  12.     System.out.print( calendar.get(Calendar.HOUR) + "시 ");
  13.    
  14.     System.out.print( calendar.get(Calendar.MINUTE) + "분 ");
  15.    
  16.     System.out.print( calendar.get(Calendar.SECOND) + "초 ");
  17.    
  18.     System.out.print( calendar.get(Calendar.DAY_OF_MONTH) + "일  ");
  19.   }
  20. }
 
반응형

'Computer_IT > JAVA' 카테고리의 다른 글

Eclipse - JAD Pluggin  (0) 2007.11.19
[SWT] 기본적인 Hello Window  (0) 2007.08.13
[java] 인수로 주어진 파일에 대한 정보 출력  (0) 2006.09.27
[JAVA] APPLET - ButtonEvent  (0) 2006.09.18
[JAVA] APPLET - Label 사용예제  (0) 2006.09.18