LocalDateTime后一天的时间
时间: 2023-11-30 09:43:39 浏览: 70
java判断两个时间是不是同一天的方法
以下是获取LocalDateTime后一天时间的方法:
```java
return LocalDateTime.now().plusDays(1).format(DateTimeFormatter.ofPattern(timeFormat));
```
其中,`LocalDateTime.now()`获取当前时间,`plusDays(1)`表示加上一天,`format(DateTimeFormatter.ofPattern(timeFormat))`表示将时间格式化为指定格式。
阅读全文