검색결과 리스트
글
자바(JAVA) 형 변환(String과 Date)
String to Date
String from = "2013-04-08 10:10:10";
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date to = transFormat.parse(from);
Date to String
Date from = new Date();
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String to = transFormat.format(from);
'컴퓨터 > 코딩 - java, jsp' 카테고리의 다른 글
[JSTL] JSTL <c:if>, <c:choose>, <c:forEach> 기본문법 (0) | 2013.07.31 |
---|---|
[JAVA] String to int, int to String 형변환 (5) | 2013.04.07 |
[Spring] Spring Framework 교육 메모 - 5일차 (0) | 2013.03.28 |
[Spring] Spring Framework 교육 메모 - 3일차 (0) | 2013.03.09 |
[Spring] Spring Framework 교육 메모 - 2일차 (0) | 2013.03.09 |
RECENT COMMENT