LocalDateTime 保留到秒
时间: 2023-11-11 13:59:16 浏览: 174
时间时间显示到秒
要将 LocalDateTime 保留到秒,可以使用 withSecond() 方法来设置秒数。示例代码如下:
```
LocalDateTime now = LocalDateTime.now();
LocalDateTime truncated = now.withSecond(0).withNano(0);
System.out.println(truncated);
```
输出结果类似于:2021-08-31T16:30:00
阅读全文