반응형
Java, Locale Based Date Format Sample Code. |
요런 포맷을 얻고 싶다면..
2013년 6월 30일 일요일
오전 1:43
아래코드를 통해 dateFormat 과 timeFormat 을 각각 얻어서 출력시키면 된다.!
Date now = new Date( System.currentTimeMillis() );
DateFormat dateFormat = DateFormat.getDateInstance( DateFormat.FULL, Locale.getDefault() );
DateFormat timeFormat = DateFormat.getTimeInstance( DateFormat.SHORT, Locale.getDefault() );
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] Drawable 이야기 (0) | 2013.07.31 |
---|---|
[android] 외장메모리에 리소스를 저장할 경우 주의사항. (0) | 2013.07.31 |
[android] setRetainInstance( boolean ) 뭐하는 녀석이냐? (0) | 2013.07.29 |
[android] ViewPager view refresh 에 대한 고찰. (0) | 2013.07.29 |
[android] Viewpager with fragment problem. (4) | 2013.07.25 |
댓글