JAVA获取年月日(格式:xxxx年xx月xx日XX时xx秒)
时间: 2024-09-11 13:03:08 浏览: 48
JAVA获取年月日(格式:xxxx年xx月xx日)、获取最近一年的年月(格式:xxxx年xx月).docx
在Java中,你可以使用`java.time`包下的类来获取并格式化日期和时间。下面是一个例子,展示了如何获取当前的日期并按照"yyyy年mm月dd日HH时mm秒"的格式打印:
```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("yyyyMMdd年MM月dd日HH:mm:ss");
// 格式化日期并打印
String formattedDate = now.format(formatter);
System.out.println(formattedDate);
}
}
```
在这个示例中,`LocalDateTime.now()`用于获取当前日期和时间,`DateTimeFormatter.ofPattern()`创建了一个格式化字符串,然后`now.format(formatter)`将本地日期时间转换为指定的格式。
阅读全文