java将当前时间转为日期格式的年月日时分秒
时间: 2024-05-03 12:02:36 浏览: 177
Java输出系统当前的日期(年月日时分秒毫秒)
可以使用Java中的SimpleDateFormat类将当前时间转换为日期格式的年月日时分秒。下面是一个示例代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class CurrentDateTimeExample {
public static void main(String[] args) {
// 创建SimpleDateFormat对象
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 获取当前时间
Date now = new Date();
// 将时间格式化为指定格式的字符串
String formattedDateTime = sdf.format(now);
// 输出格式化后的时间字符串
System.out.println("当前时间为:" + formattedDateTime);
}
}
```
在上面的代码中,我们首先创建了一个SimpleDateFormat对象,指定了日期格式的字符串"yyyy-MM-dd HH:mm:ss"。然后使用Date类获取当前时间,将其格式化为指定格式的字符串,并最终输出格式化后的时间字符串。
阅读全文