java时间与时间戳互转
2021/5/7 12:27:59
本文主要是介绍java时间与时间戳互转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
java中时间精确到毫秒级,所以需求时间需要 除以1000
//将时间转换为时间戳 public static String dateToStamp(String s) throws Exception { String res;<br> //设置时间格式,将该时间格式的时间转换为时间戳 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = simpleDateFormat.parse(s); long time = date.getTime(); res = String.valueOf(time); return res; } //将时间戳转换为时间 public static String stampToTime(String s) throws Exception{ String res; SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); long lt = new Long(s);<br> //将时间戳转换为时间 Date date = new Date(lt);<br> //将时间调整为yyyy-MM-dd HH:mm:ss时间样式 res = simpleDateFormat.format(date); return res; }
后天调用代码为,通过除以1000获取到日期和时间的时间戳
//getTime()方法是获取当前时间的时间戳,但是得到的时间不是当前时间<br>Long s = new Date().getTime()/1000; String s1 = TimeFormatUtil.stampToTime(String.valueOf(s));
需要转换,先转换为"yyyy-MM-dd HH:mm:ss"这个格式的时间,然后在将这个时间转换为时间戳
//先将当前时间转换为习惯时间 String date = TimeFormatUtil.timeToStamp(new Date()); //将习惯时间转换为时间戳 String time = TimeFormatUtil.dateToStamp(date);
转自:https://www.cnblogs.com/li-yi-learn/p/9036982.html
这篇关于java时间与时间戳互转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略