java把13位时间戳转换成yyyy-MM-ddHH:mm:ss格式,⼯具
类
public static void main(String[] args) {
java时间日期格式转换String time = System.currentTimeMillis();//获取当前时间精确到毫秒级的时间戳,例:1525849325942
System.out.println(timeStamp2Date(time))
}
public static String timeStamp2Date(String time) {
Long timeLong = Long.parseLong(time);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//要转换的时间格式
Date date;
try {
date = sdf.parse(sdf.format(timeLong));
return sdf.format(date);
} catch (ParseException e) {
e.printStackTrace();
return null;
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论