当前位置:   article > 正文

Java时间戳转换为日期_java 时间戳转日期

java 时间戳转日期

当前时间时间戳转换为日期

//当前时间毫秒的时间戳转换为日期
Date millisecondDate= new Date(System.currentTimeMillis());
//格式化时间
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String millisecondStrings = formatter.format(millisecondDate);
System.out.println(millisecondStrings);

//当前时间秒的时间戳转换为日期

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//字符串类型的秒级时间戳
String currentTime = "1657519062";
Long date = Long.valueOf(currentTime);
//String类型
String date_time = formatter.format(new Date(date*1000L));
System.out.println(date_time);
//Date类型
Date times=formatter.parse(date_time);
System.out.println(times);
//Date转为LocalDateTime类型
Instant instant = times.toInstant();
ZoneId zoneId = ZoneId.systemDefault();
LocalDateTime localDateTime = instant.atZone(zoneId).toLocalDateTime();

System.out.println(localDateTime );

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/72319
推荐阅读
相关标签
  

闽ICP备14008679号