반응형
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);
반응형
'백엔드 > Java' 카테고리의 다른 글
JSON 문자열 List 타입 파싱할때 LinkedHashMap으로 변환되는 문제 (1) | 2020.09.26 |
---|---|
문자열 배열을 문자열로 변환할 때 구분자 처리 (0) | 2020.09.26 |
JVM이 이용가능한 프로세스 개수 (0) | 2020.03.17 |
java.util.properties (0) | 2020.03.17 |
Failure to transfer commons-lang:commons-lang:pom:2.1 from https://repo.maven.apache.org/maven2 was cached in the local repository (0) | 2019.01.08 |
댓글