java将时间戳的字符串转为时间
时间: 2023-08-30 11:06:16 浏览: 109
python中时间模块的基本使用教程
可以使用Java中的SimpleDateFormat类将时间戳的字符串转换为时间。示例如下:
```java
String timestampStr = "1620100568";
long timestamp = Long.parseLong(timestampStr);
Date date = new Date(timestamp * 1000L); // 注意时间戳单位为秒,需要乘以1000转为毫秒
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = sdf.format(date);
System.out.println(formattedDate);
```
输出结果为:2021-05-04 14:09:28
其中,SimpleDateFormat中的日期格式可以根据需要进行修改。
阅读全文