当前位置:   article > 正文

【Java】时间戳与日期之间的转换_java 时间戳转日期

java 时间戳转日期

获取时间戳:

long s=System.currentTimeMillis();
long s1=new Date().getTime();
long s2=Calendar.getInstance().getTimeInMillis();
long s3=Instant.now().toEpochMilli();
long s4=Clock.systemUTC().millis();
  • 1
  • 2
  • 3
  • 4
  • 5

将时间戳转化为指定格式的日期:

String s ="1662460000000";
//设置时间的格式
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//将时间转换指定格式的日期
String date=f.format(Long.valueOf(s));
System.out.println(date);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

将指定格式的时间转化为时间戳

String s ="2020-09-09 12:12:00";
SimpleDateFormat f=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//getTime()获取格式日期的时间戳
long shootTime = f.parse(s).getTime();
System.out.println(shootTime);
  • 1
  • 2
  • 3
  • 4
  • 5

在这里插入图片描述

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

闽ICP备14008679号