【Date】时间戳转化成Date时间格式处理
程序员文章站
2022-05-02 17:10:31
...
1.问题:
如何把时间戳变成Date格式,或者易读的String仿时间格式?
2.源代码:
public class Test {
public static void main(String[] args) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");/*简单格式处理工具*/
long longTime=1498543182353L;/*传入时间戳,这里的时间戳是:1498543182353*/
Date date = new Date(longTime);/*这里要传入long类型的时间值*/
System.out.println("1.Date时间格式时间:"+date);
String nomalTime = simpleDateFormat.format(date);/*将时间格式转化为易读格式*/
System.out.println("2.仿时间格式:"+nomalTime);
}
}
3.截图:
4.总结:
1.SimpleDateFormat是用来把CST时间(Tue Jun 27 13:59:42 CST 2017),转化成仿时间格式(2017-06-27 13:59:42)的工具类;
2.
Date date = new Date(longTime);/*这里要传入long类型的时间值*/
这里时间传参的参数要是long类型的数字,不能使String类型的数字;
3.这里long类型的时间戳,一定要在后面加上一个L,不然会:
推荐阅读
-
PHP date函数常用时间处理方法
-
oracle 根据时间戳查询date类型sql
-
PowerShell中使用Get-Date获取日期时间并格式化输出的例子
-
php Smarty date_format [格式化时间日期]
-
JS自定义函数实现时间戳转换成date的方法示例
-
Linux命令date日期时间和Unix时间戳互转讲解
-
javascript format Date 简单的时间格式化
-
【日期时间处理】获取当前日期时间戳、日期格式字符串转时间戳、日期时间格式字符串转时间戳
-
JDBC_时间处理_Date_Time_Timestamp区别_随机日期生成
-
年月日时间格式转时间戳 ,解决ios系统不兼容 JS 中 = new Date(yyyy-mm-dd)方法