반응형
정말 자주 쓰는 기능이지만 매번 찾고 매번 헷갈리는것 같다
String to Date
String from = "2018-11-28 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);
반응형
'IT > JAVA' 카테고리의 다른 글
[JPA] Composite-id class must implement Serializable 에러 (1) | 2019.05.28 |
---|---|
모바일 체크 로직 예제 (0) | 2019.04.28 |