java LocalDateTime 获取当前日期
时间: 2024-06-07 10:04:13 浏览: 126
`LocalDateTime` 是 Java 8 中的一个类,它表示日期和时间,但不包括时区信息。如果你想要获取当前日期(即不包含时间的部分),你可以使用 `LocalDateTime` 结合 `LocalDate` 类。以下是获取当前日期的方法:
```java
import java.time.LocalDate;
import java.time.LocalDateTime;
LocalDateTime currentDateTime = LocalDateTime.now(); // 获取当前日期和时间
LocalDate currentDate = currentDateTime.toLocalDate(); // 提取日期部分
System.out.println("当前日期: " + currentDate);
```
在这个代码片段中,`LocalDateTime.now()` 返回当前日期和时间,然后通过 `toLocalDate()` 方法提取出日期部分。
相关问题
java LocalDateTime 获取当前的日期 与小时
要获取当前的日期和小时,可以使用Java的LocalDateTime类。以下是获取当前日期和小时的示例代码:
```java
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
// 获取当前日期和时间
LocalDateTime now = LocalDateTime.now();
// 获取当前日期
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
// 获取当前小时
int hour = now.getHour();
System.out.println("当前日期:" + year + "-" + month + "-" + day);
System.out.println("当前小时:" + hour);
}
}
```
运行以上代码,将输出当前的日期和小时。
Java 类型LocalDateTime 获取当前日期
Java中的LocalDateTime类表示一个本地日期时间。获取当前日期可以使用静态方法now()来获取当前日期时间。例如:
```
LocalDateTime currentDateTime = LocalDateTime.now();
```
这将返回当前日期时间的对象。你还可以使用其他方法来获取日期时间中的特定部分,例如年份、月份、日期、小时等。
```
int year = currentDateTime.getYear();
int month = currentDateTime.getMonthValue();
int day = currentDateTime.getDayOfMonth();
int hour = currentDateTime.getHour();
```
如果你想在特定的时区获取当前日期时间,可以使用ZoneId对象。例如:
```
ZoneId zoneId = ZoneId.of("Asia/Shanghai");
LocalDateTime currentDateTime = LocalDateTime.now(zoneId);
```
这将返回当前在亚洲/上海时区的日期时间。
阅读全文