LocalDateTime怎么用
时间: 2023-11-09 13:00:41 浏览: 78
如何在Spring Boot应用中优雅的使用Date和LocalDateTime的教程详解
5星 · 资源好评率100%
LocalDateTime是Java 8中的一个日期时间类,用于表示日期和时间,不带有时区信息。可以通过以下方式创建LocalDateTime对象:
```java
LocalDateTime now = LocalDateTime.now(); // 获取当前日期时间
LocalDateTime specificDate = LocalDateTime.of(2022, Month.JANUARY, 1, 10, 30, 0); // 创建指定日期时间
```
可以使用LocalDateTime的方法获取年、月、日、时、分、秒等信息,例如:
```java
int year = now.getYear();
Month month = now.getMonth();
int dayOfMonth = now.getDayOfMonth();
int hour = now.getHour();
int minute = now.getMinute();
int second = now.getSecond();
```
还可以对LocalDateTime进行加减操作,例如:
```java
LocalDateTime newDate = now.plusDays(1); // 加一天
LocalDateTime newTime = now.minusHours(2); // 减两小时
```
阅读全文