반응형
/*
* 시간정보 가져오기
*/
public String getDate() {
Calendar c = Calendar.getInstance();
curYear = Integer.toString(c.get(Calendar.YEAR));
curMonth = Integer.toString(c.get(Calendar.MONTH) + 1);
curDay = Integer.toString(c.get(Calendar.DAY_OF_MONTH));
// YYYY/MM/DD
curdate = curYear + curMonth + curDay;
return curdate;
}
반응형
'Android' 카테고리의 다른 글
[ArrayAdapter]Adapter에 카운트가 정상적으로 되지 않아 제대로 그려지지 않는 현상 (0) | 2011.01.24 |
---|---|
[BroadCast/BroadCastReceiver/Action] (1) | 2011.01.24 |
[TextView] 텍스트 뷰 스트링 가져오기 (0) | 2011.01.24 |
[Thead]자동저장 스레드 (0) | 2011.01.24 |
[Camera] 카메라 (0) | 2011.01.24 |