본문 바로가기

안드로이드 개발/개발팁

자바(안드로이드) 오늘날짜 , 이번달의 마지막날짜 구하기

자바(안드로이드) 오늘날짜 , 이번달의 마지막날짜 구하기

 

 

 

GregorianCalendar today = new GregorianCalendar ( );
         
         
         int year = today.get ( today.YEAR );
         int month = today.get ( today.MONTH ) + 1;
         int day = today.get ( today.DAY_OF_MONTH );
   
   
         m_strRequestFromDate =

String.format("%d-%02d-%02d", year ,month,day ); // 오늘 날짜
         

int maxday = today.getActualMaximum ( ( today.DAY_OF_MONTH ) );
m_strRequestToDate =

String.format("%d-%02d-%02d", year , month, maxday); // 이번달의 마지막 날짜