본문 바로가기
백엔드/Java

[JAVA] String to Date, Date to String 형변환

by 1005ptr 2020. 8. 6.
반응형

 

https://nota.tistory.com/50

 

[JAVA] String to Date, Date to String 형변환

자바(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);..

nota.tistory.com

new Date(String)으로 Date를 생성하면 Deprecated 됐다는 경고가 발생한다.

대신 이걸 쓰자.

 

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);
반응형

댓글