Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter09 : Calendar 본문

JAVA/chapter20_api

chapter09 : Calendar

GAWON 2023. 5. 30. 18:24
package org.joonzis.ex;

import java.util.Calendar;

public class Ex09_Calendar {
	public static void main(String[] args) {
		
		// Calendar는 추상 클래스라서 객체를 생성할 수 없다.
		// Calendar 클래스를 구현한 클래스의 getInstanse()를 사용하여 반환
		Calendar cal = Calendar.getInstance();	// 현재 시간으로 자동 세팅
		
		// 특정 날짜 셋팅
		//cal.set(1980, 9, 21, 11, 34, 10);
		
		System.out.println("년 : " + cal.get(Calendar.YEAR));
		// 월 : 0 ~ 11 이므로 +1을 하자
		System.out.println("월 : " + (cal.get(Calendar.MONTH)+1));
		System.out.println("일 : " + cal.get(Calendar.DATE));
		
		// 요일 번호 : 일(1), 월(2) ... 토(7)
		System.out.println("요일 번호 : " + cal.get(Calendar.DAY_OF_WEEK));
		
		// 시, 분, 초
		System.out.println("오전/오후 : " + cal.get(Calendar.AM_PM));	// 오전 : 0, 오후 : 1
		System.out.println("시 : " + cal.get(Calendar.HOUR));		// 12시각제(0~11)
		System.out.println("시 : " + cal.get(Calendar.HOUR_OF_DAY));	// 24시각제(0~23)
		System.out.println("분 : " + cal.get(Calendar.MINUTE));
		System.out.println("초 : " + cal.get(Calendar.SECOND));
		System.out.println("밀리초 : " + cal.get(Calendar.MILLISECOND));	// 1000분의 1초
		System.out.println("밀리초 -> 초 : " + 
				(cal.get(Calendar.MILLISECOND) / 1000.0) + "초");
		
		// 현재 날짜를 밀리초로 반환
		System.out.println(cal.getTimeInMillis());
		
	
	}
}

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

chapter11 : Calendar_Date  (0) 2023.05.30
chapter10 : Date_SimpleDateFormat  (0) 2023.05.30
chapter08 : Big_number  (0) 2023.05.30
chapter07 : Wrapper  (0) 2023.05.30
chapter06 : StringBuffer  (0) 2023.05.30