◆ 무한한 가능성/& JAVA
자바(JAVA) 형 변환(String to Date, Date to String)
치로로
2016. 3. 21. 15:35
자바(JAVA) 형 변환(String to Date, Date to String)
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);
source.> http://nota.tistory.com/50