LocalDateTime 设置时分秒
时间: 2023-11-11 12:59:33 浏览: 127
可以使用 LocalDateTime 的 with 方法来设置时分秒,示例代码如下:
```
LocalDateTime dateTime = LocalDateTime.now();
dateTime = dateTime.withHour(10).withMinute(30).withSecond(0);
```
以上代码将当前时间的时设置为 10,分设置为 30,秒设置为 0。
相关问题
LocalDateTime设置时分秒
要设置LocalDateTime的时分秒,可以使用withHour、withMinute和withSecond方法。例如:
```
LocalDateTime now = LocalDateTime.now();
LocalDateTime newDateTime = now.withHour(10).withMinute(30).withSecond(0);
```
这将创建一个新的LocalDateTime对象,其时间为当前时间的10:30:00。
localdatetime设置时分秒
LocalDateTime可以通过of方法设置时分秒,例如:
LocalDateTime localDateTime = LocalDateTime.of(2021, 9, 1, 12, 30, 45);
这样就设置了一个2021年9月1日12点30分45秒的LocalDateTime对象。
阅读全文