timestamp 형태의 문자열 (currentTimeMillis) 을 날짜 형태의 문자열(yyMMdd)로 변환하기

By | 1월 7, 2015
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
long time = 1419260400000L;
SimpleDateFormat mmddFormat = new SimpleDateFormat("MM/dd");
String mmdd = mmddFormat.format(new Timestamp(time));
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments