이 포스팅은 제휴마케팅이 포함되어 일정의 커미션을 지급받을수 있음

반응형

String to Date, Date to String 형변환

 

 

 

 

String to Date

 

String from = "2019-03-01 12:12:12";
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);

 

반응형

+ Recent posts