int year = dateTime.getYear();
Month month = dateTime.getMonth();// 返回 Month 枚举 int monthValue = dateTime.getMonthValue();// 返回 1-12 int day = dateTime.getDayOfMonth(); int hour = dateTime.getHour(); int minute = dateTime.getMinute(); int second = dateTime.getSecond(); int nano = dateTime.getNano();