Date,SimpleDateFormat,时间戳之间的转化

经典案例:

SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy-MM-dd");

Long time =1520492526443;

Date endTime = sdFormat.parse(sdFormat.format(new Date(time)));

new Date(time) 是把lang类型的时间戳转化为Data类型

sdFormat.format(new Date(time) 是将Date转化为指定格式的字符串日期;

sdFormat.parse(...) 是将字符串日期转化为指定格式的Date日期

你可能感兴趣的:(Java,Date转化)