博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
时间戳转换为时间(不为1970)
阅读量:5749 次
发布时间:2019-06-18

本文共 392 字,大约阅读时间需要 1 分钟。

hot3.png

1.时间戳转换为时间

/*      * 将时间戳转换为时间     */    public static String stampToDate(String s) throws ParseException{    	long time = Integer.parseInt(s)*1000L;    	Date date = new Date(time);    	java.text.SimpleDateFormat sDateFormat = new java.text.SimpleDateFormat(    	        "yyyy-MM-dd HH:mm:ss");         return sDateFormat.format(date);    }

 

转载于:https://my.oschina.net/liusonghuang/blog/913274

你可能感兴趣的文章
Android自动化压力测试——Monkey工具
查看>>
公司新年第一次全员大会小记
查看>>
最懒的程序员
查看>>
了解Amdahl定理,该定理再多核时代有怎样的影响?
查看>>
JAVA8 Stream 浅析
查看>>
inner join on, left join on, right join on要详细点的介绍
查看>>
SAS vs SSD对比测试MySQL tpch性能
查看>>
Spring boot 整合CXF webservice 全部被拦截的问题
查看>>
Pinpoint跨节点统计失败
查看>>
时间戳转换为时间(不为1970)
查看>>
win2003 NAT 访问互联网
查看>>
【Canal源码分析】Canal Server的启动和停止过程
查看>>
机房带宽暴涨问题分析及解决方法
查看>>
wdOS系统下源码编译安装LAMP环境(linux+apache+php+mysql)
查看>>
iOS 绕过相册权限漏洞
查看>>
我的友情链接
查看>>
XP 安装ORACLE
查看>>
八、 vSphere 6.7 U1(八):分布式交换机配置(vMotion迁移网段)
查看>>
[转载] 中华典故故事(孙刚)——19 万岁
查看>>
修改hosts文件里面的主机名,oralce asm无法启动
查看>>