String 》》 Date
DateFormat sdFormat = new SimpleDateFormat("yyyyMMdd");
Date tempDate = sdFormat.parse("20170817");
※ 주의할 점 : 포맷 타입에 맞게 String 데이터가 입력되어야 파싱이 된다.
Date 》》 String
DateFormat sdFormat = new SimpleDateFormat("yyyyMMdd");
Date nowDate = new Date();
String tempDate = sdFormat.format(nowDate);
※ 주의할 점 : 포맷 형식대로 리턴된다.
※ 출처 : http://sdw8001.tistory.com/130
'Programming > Java & JSP & Spring' 카테고리의 다른 글
[Spring Boot] JPA UPDATE (0) | 2017.08.17 |
---|---|
[JSON] KEY 값 추출해서 사용하기 (0) | 2017.08.17 |
[Spring] 예외처리 (0) | 2017.08.12 |
[SpringBoot] 프로퍼티 이용하기 (0) | 2017.08.08 |
[SpringBoot] 스타터 의존성 사용하기 (0) | 2017.08.08 |