Java8的时间处理
Java的时间处理在早期版本中存在诸多问题(如 java.util.Date 和 java.util.Calendar 的混乱设计),但Java8引入了引入了全新的 java.time包(基于JSR 310),提供了更清晰、线程安全且强大的时间处理API。
1. 核心类与用途
类名 | 用途 | 示例场景 |
---|---|---|
LocalDate | 只包含日期(年-月-日),无时区信息 | 生日、纪念日 |
LocalTime | 只包含时间(时:分:秒:纳秒),无时区信息 | 会议时间、营业时间 |
LocalDateTime | 包含日期和时间,无时区信息 | 本地事件(如订单创建时间) |
ZonedDateTime | 包含日期、时间和时区信息 | 跨时区时间(如航班起飞时间) |
Instant | 时间戳(从 1970-01-01T00:00:00Z 的秒数) | 记录日志时间、系统事件 |
Period | 日期段(年、月、日) | 计算年龄、两个日期之间的间隔 |
Duration | 时间段(小时、分钟、秒、纳秒) | 计算程序运行时间 |
DateTimeFormatter | 格式化或解析日期时间字符串 | 日期显示、用户输入解析 |
- LocalDate:表示日期(年-月-日)
- LocalTime:表示时间(时:分:秒:纳秒)
- LocalDateTime:表示时间+日期(年月日时分秒),是java8最常用的日期类
2. LocalDate(日期类)
用途:表示不带时间和时区的纯日期(年、月、日),例如生日、会议日期等。
创建方式:
LocalDate currentDate = LocalDate.now(); // 当前系统日期(如2025-04-04)
LocalDate specificDate = LocalDate.of(2025, 4, 4); // 2025年4月4日
LocalDate parsedDate = LocalDate.parse("2025-04-04"); // 解析字符串(必须为ISO格式)
常用操作:
LocalDate tomorrow = currentDate.plusDays(1); // 加1天
LocalDate lastMonth = currentDate.minusMonths(1); // 减1个月
DayOfWeek dayOfWeek = currentDate.getDayOfWeek(); // 获取星期几(如MONDAY)
boolean isLeapYear = currentDate.isLeapYear(); // 是否闰年
3. LocalTime(时间类)
用途:表示不带日期和时区的纯时间(时、分、秒、纳秒),例如闹钟时间、打卡时间。
创建方式:
LocalTime currentTime = LocalTime.now(); // 当前系统时间(如14:30:45.123)
LocalTime specificTime = LocalTime.of(14, 30, 45); // 14:30:45
LocalTime parsedTime = LocalTime.parse("14:30:45"); // 解析字符串(ISO格式)
常用操作:
LocalTime nextHour = currentTime.plusHours(1); // 加1小时
int minute = currentTime.getMinute(); // 获取分钟(30)
boolean isAfter = specificTime.isAfter(LocalTime.NOON); // 是否在中午12点后
4. LocalDateTime(日期时间类)
用途:表示日期和时间的组合(年-月-日-时-分-秒),例如日志时间戳、订单创建时间。
创建方式:
LocalDateTime currentDateTime = LocalDateTime.now(); // 当前日期时间
LocalDateTime combined = LocalDateTime.of(specificDate, specificTime); // 组合日期和时间
LocalDateTime parsedDateTime = LocalDateTime.parse("2023-10-05T14:30:45"); // ISO格式解析
常用操作:
LocalDateTime nextWeek = currentDateTime.plusWeeks(1); // 加1周
LocalDate datePart = currentDateTime.toLocalDate(); // 提取日期部分
LocalTime timePart = currentDateTime.toLocalTime(); // 提取时间部分
5. 相互转换
5.1 LocalDate ↔ LocalDateTime
// LocalDate 转 LocalDateTime
LocalDateTime dateTimeFromDate = specificDate.atTime(14, 30); // 2023-10-05T14:30// LocalDateTime 转 LocalDate
LocalDate dateFromDateTime = specificDateTime.toLocalDate(); // 2023-10-05
5.2 LocalTime ↔ LocalDateTime
// LocalTime 转 LocalDateTime
LocalDateTime dateTimeFromTime = specificTime.atDate(specificDate); // 2023-10-05T14:30:45// LocalDateTime 转 LocalTime
LocalTime timeFromDateTime = specificDateTime.toLocalTime(); // 14:30:45
6. 格式化与解析
使用DateTimeFormatter自定义格式:
// LocalDate 格式化
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("yyyy/MM/dd");
String formattedDate = currentDate.format(dateFormatter); // "2023/10/05"
LocalDate parsedDate = LocalDate.parse("2023/10/05", dateFormatter);// LocalDateTime 格式化
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = currentDateTime.format(dateTimeFormatter); // "2023-10-05 14:30:45"
LocalDateTime parsedDateTime = LocalDateTime.parse("2023-10-05 14:30:45", dateTimeFormatter);