给定毫秒值1414381913000L
public class demo {
public static void main(String[] args) {
long milliSecond = 1414381913000L;
Date date = new Date();
date.setTime(milliSecond);
System.out.println(new SimpleDateFormat("yyyy-MM-dd HH:ss:mm").format(date));
}
}
来源:CSDN
作者:山岭巨人杨尚桑
链接:https://blog.csdn.net/qq_44868502/article/details/103237521