注意:通过System.currentTimeMillis()获取到的时间,这个是精确到毫秒的 13位
如果需要精确到秒的话就把后面三位去掉变成 10位
如:
System.currentTimeMillis() = 1545909006050 毫秒级别
此方法只能转化精确到毫秒级别的(13位),如果得到的是10位的时间戳 乘1000传入即可
public static String timeStampToDate(long tsp, String... format) {
SimpleDateFormat sdf;
if (format.length < 1) {
sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss E",Locale.getDefault());
} else {
sdf = new SimpleDateFormat(format[0], Locale.getDefault());
}
return sdf.format(tsp);
}
执行结果:2018年12月27日 12:19:05 周四
http://tool.chinaz.com/Tools/unixtime.aspx 可以在这个网站在线转化,注意精度哦。
网友评论