java long转date输出
时间: 2023-05-25 10:05:21 浏览: 102
一个long型与Date型时间转换工具
5星 · 资源好评率100%
将long类型的时间戳转换成Date类型,可以使用Java中的Date类和SimpleDateFormat类。以下是示例代码:
```java
long timestamp = 1627050071000L; //时间戳,单位为毫秒
Date date = new Date(timestamp);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.format(date));
```
输出结果为:
```
2021-07-23 18:47:51
```
其中,format方法用于将Date类型的时间转换成指定的格式字符串,"yyyy-MM-dd HH:mm:ss"表示年-月-日 时:分:秒的格式。
阅读全文