유닉스타임을 선택한 날짜 형식으로 변환해서 반환한다.
- public String dateFormat(String dateInfo, int changeType){
- String dateFormat = "";
- switch(changeType){
- case 1:
- dateFormat = "yyyy-MM-dd HH:mm";
- break;
- default :
- dateFormat = "yyyy-MM-dd";
- break;
- }
- Date printDate = new Date(Long.parseLong(dateInfo));
// Date printDate = new Date(dateInfo); - SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
- return sdf.format(printDate);
- }
'Java' 카테고리의 다른 글
jstl 계행 처리 (0) | 2014.08.26 |
---|---|
문자열 형변환 (0) | 2011.09.20 |
html 태그 제거 (0) | 2011.09.16 |
형변환 (0) | 2011.02.01 |