java时间戳转年月日时分秒
时间: 2023-11-14 20:07:51 浏览: 190
时间戳转年月日时分秒
Java中可以使用Date类和SimpleDateFormat类将时间戳转换为年月日时分秒的格式。具体步骤如下:
1. 创建一个Date对象,将时间戳作为参数传入构造方法中。
2. 创建一个SimpleDateFormat对象,指定日期时间格式。
3. 调用SimpleDateFormat对象的format()方法,将Date对象转换为指定格式的字符串。
下面是示例代码:
long timeStamp = System.currentTimeMillis(); // 获取当前时间戳
Date date = new Date(timeStamp); // 创建Date对象
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 创建SimpleDateFormat对象,指定日期时间格式
String time = sdf.format(date); // 将Date对象转换为指定格式的字符串
System.out.println(time); // 输出转换后的时间字符串
输出结果为:2022-12-15 09:55:39
--相关问题--:
1. Java中还有哪些常用的日期时间类?
2. 如何将字符串转换为Date对象?
3.
阅读全文