티스토리 뷰
어떤문자열이 DatePattern 을 가지고 있을때 또 다른 DatePattern 으로 변경하고자 한다.
이때 SimpleDateFormat에 현재 DatePattern을 넣어 parsing 한 후 다시 해당 패턴으로 format을 변경해주면된다.
public String convertDatePattern(String stringDate, String old_pattern, String new_pattern) { SimpleDateFormat formatter = new SimpleDateFormat(old_pattern);
try { Date time = formatter.parse(stringDate); return new SimpleDateFormat(new_pattern).format(time); } catch (ParseException e) { e.printStackTrace(); } return stringDate; } |
[작성] devbible.tistory.com
'Development' 카테고리의 다른 글
[Android] Webview session, cookie, cache 초기화 (0) | 2012.11.29 |
---|---|
[Android] JellyBean 4.2 Debugging mode _ 젤리빈 4.2 개발자옵션 활성화 (0) | 2012.11.16 |
[IOS] 기존 xcode 지우기 (0) | 2012.10.27 |
[Design] UX / UI ??? (0) | 2012.10.19 |
Windows 8 App 개발과 언어 (0) | 2012.09.10 |
댓글
최근에 올라온 글
글 보관함
- Total
- Today
- Yesterday