java实现时间戳转为年月日时分秒(附完整源码)
时间: 2023-11-09 08:05:33 浏览: 212
js中获取年月日时分秒
可以使用Java中的SimpleDateFormat类来实现时间戳转为年月日时分秒的功能。以下是完整的源码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimestampToDate {
public static void main(String[] args) {
long timestamp = 1582068992000L; // 时间戳,精确到毫秒
Date date = new Date(timestamp); // 时间戳转为Date对象
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 设置日期格式
String formatTime = sdf.format(date); // 格式化时间
System.out.println(formatTime); // 输出结果:2020-02-19 14:16:32
}
}
```
通过以上代码,我们可以将一个时间戳转换为年月日时分秒的格式,并输出结果。其中,SimpleDateFormat类中的日期格式可以根据实际需求进行修改。
阅读全文