java将当前时间转为Date类型的年月日时分秒
时间: 2024-05-03 20:16:39 浏览: 155
您可以使用Java中的`SimpleDateFormat`类将当前时间转为指定格式的字符串,然后再将字符串转为`Date`类型。以下是示例代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// 创建SimpleDateFormat对象,指定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 获取当前时间
Date now = new Date();
// 将当前时间转为指定格式的字符串
String nowStr = sdf.format(now);
System.out.println("当前时间:" + nowStr);
try {
// 将字符串转为Date类型
Date date = sdf.parse(nowStr);
// 输出Date类型的年月日时分秒
System.out.println("年:" + (date.getYear() + 1900));
System.out.println("月:" + (date.getMonth() + 1));
System.out.println("日:" + date.getDate());
System.out.println("时:" + date.getHours());
System.out.println("分:" + date.getMinutes());
System.out.println("秒:" + date.getSeconds());
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
输出结果如下:
```
当前时间:2022-05-16 16:23:30
年:2022
月:5
日:16
时:16
分:23
秒:30
```
阅读全文