java获取年月日时分秒
时间: 2023-09-14 18:11:45 浏览: 170
java获取年月日时分秒的方法
你可以使用 Java 中的 `java.time` 包来获取当前的年月日时分秒。示例代码如下:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前时间
LocalDateTime now = LocalDateTime.now();
// 格式化日期时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
// 输出日期时间
System.out.println(formattedDateTime);
}
}
```
这样就可以获取到当前的年月日时分秒,并且将其格式化为字符串输出。你可以根据需要调整日期时间格式。
阅读全文