프로그래머의 삶 Programmer's Life/Java!!

JAVA 금일 날짜 계산

Oliver's World 2012. 10. 10. 11:35
728x90

Calendar now=Calendar.getInstance();

 

년 : now.get(Calendar.YEAR)

월 : now.get(Calendar.MONTH)+1

일 : now.get(Calendar.DAY_OF_MONTH)

시간(24시 기준) : now.get(Calendar.HOUR_OF_DAY) 

시간(12시 기준) : now.get(Calendar.HOUR)

 

이정도면 끝~

728x90