자바(안드로이드) 오늘날짜 , 이번달의 마지막날짜 구하기
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); // 이번달의 마지막 날짜
'안드로이드 개발 > 개발팁' 카테고리의 다른 글
패스를 통해서 비트map 만들기 (0) | 2015.01.12 |
---|---|
동그랗게 랜더링하기(비트맵) (0) | 2015.01.12 |
ArrayList 인텐트를 통해서 전달받기 (0) | 2015.01.05 |
액티비티 화면에서 EditText 포커싱으로 인해서 시작하자마자 키보드가 올라올때 (0) | 2015.01.02 |
특정 List목록으로 돌아갈때 intent 플래그 옵션 (0) | 2014.12.21 |