LocalDateTime获取当前日期
时间: 2023-08-16 10:13:40 浏览: 76
获取当前时间
5星 · 资源好评率100%
您可以使用Java中的`LocalDateTime`类来获取当前日期和时间。以下是一个示例代码:
```java
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
LocalDateTime currentDateTime = LocalDateTime.now();
System.out.println("当前日期和时间: " + currentDateTime);
// 获取当前日期
int year = currentDateTime.getYear();
int month = currentDateTime.getMonthValue();
int day = currentDateTime.getDayOfMonth();
System.out.println("当前日期: " + year + "-" + month + "-" + day);
}
}
```
运行上述代码将输出当前日期和时间,以及当前日期。
请注意,这个示例使用的是Java 8中的`java.time`包,如果您使用的是较早版本的Java,请在代码中相应地进行修改。
阅读全文