13位毫秒时间戳转为10位秒时间戳

原创
2017/05/08 11:53
阅读数 3.3W
long timeStampSec = System.currentTimeMillis()/1000;
String timestamp = String.format("%010d", timeStampSec);

如 2017-02-27 15:48:27 的13位时间戳为:1488181707000

System.out.println(String.format("%010d",1488181707000L/1000));
输出:1488181707

转换结果:

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
返回顶部
顶部