LocalDateTime 获取年月日时分秒
时间: 2023-05-31 12:07:01 浏览: 118
Android 年月日 时分秒 控件
在Java 8中,可以使用LocalDateTime类获取当前时间的年月日时分秒。
示例代码:
```
LocalDateTime now = LocalDateTime.now();
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
int hour = now.getHour();
int minute = now.getMinute();
int second = now.getSecond();
```
上述代码将获取当前时间的年、月、日、时、分、秒,并将它们分别存储在变量year、month、day、hour、minute和second中。这些值可以用于任何需要使用时间的应用程序。
阅读全文