LocalDateTime在当前时间加年
时间: 2024-07-10 22:00:35 浏览: 65
`LocalDateTime` 是 Java 8 中引入的一个日期和时间类,它代表了一个局部日期和时间,不包含时区信息。如果你想要在当前 `LocalDateTime` 上添加一年,你可以使用 `plusYears()` 方法。
以下是一个示例:
```java
import java.time.LocalDateTime;
import java.time.Duration;
// 获取当前本地日期时间
LocalDateTime currentDate = LocalDateTime.now();
// 添加一年
LocalDateTime nextYear = currentDate.plusYears(1);
System.out.println("Current LocalDateTime: " + currentDate);
System.out.println("Next year's LocalDateTime: " + nextYear);
```
相关问题
localdatetime获取当前时间
在Java 8及以上版本中,可以使用`LocalDateTime.now()`方法获取当前时间。示例如下:
```java
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
System.out.println("当前时间:" + now);
}
}
```
输出:
```
当前时间:2021-10-25T10:30:15.123456
```
LocalDateTime获取当前时间
你好,可以使用Java 8中的LocalDateTime类来获取当前时间。可以使用以下代码:
LocalDateTime now = LocalDateTime.now();
这将返回当前日期和时间的LocalDateTime对象。
阅读全文