当前位置:   article > 正文

Java 时间戳与时间的相互转换_java 时间戳转时间

java 时间戳转时间

1.时间戳转时间

  1. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2. String format = sdf.format(usageStats.getFirstTimeStamp());// 格式化时间
  3. Log.e("TAG",format);

2.时间转时间戳

  1. //方法 一
  2. System.currentTimeMillis();
  3. //方法 二
  4. Calendar.getInstance().getTimeInMillis();
  5. //方法 三
  6. new Date().getTime();

3.毫秒转时长

(80条消息) java 毫秒转换秒_毫秒转换成时分秒 格式:HH:mm:ss Java兑现_华府萝贝贝的博客-CSDN博客

  1. SimpleDateFormat time = new SimpleDateFormat("HH:mm:ss");
  2. String timeLong = time.format(usageStats.getTotalTimeInForeground()-TimeZone.getDefault().getRawOffset());// 格式化时间 如果直接转换 时长将受时区影响
  3. Log.e("TAG",timeLong);

4.获取当前时间

  1. SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
  2. String date = df.format(new Date());// new Date()为获取当前系统时间,也可使用当前时间戳

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

闽ICP备14008679号