时间处理的未来:Java 8全新日期与时间API完全解析
import java.time.LocalDate;
import java.time.LocalTime;
import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.temporal.ChronoUnit;
public class JavaDateTimeExample {
public static void main(String[] args) {
// 当前日期
LocalDate today = LocalDate.now();
System.out.println("今天的日期: " + today);
// 当前时间
LocalTime now = LocalTime.now();
System.out.println("现在的时间: " + now);
// 当前日期和时间
LocalDateTime nowDateTime = LocalDateTime.now();
System.out.println("当前日期和时间: " + nowDateTime);
// 使用特定格式格式化日期时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = nowDateTime.format(formatter);
System.out.println("格式化后的日期时间: " + formattedDateTime);
// 解析字符串为日期时间
LocalDateTime parsedDateTime = LocalDateTime.parse(formattedDateTime, formatter);
System.out.println("解析的日期时间: " + parsedDateTime);
// 在当前日期时间上增加一小时
LocalDateTime newDateTime = nowDateTime.plusHours(1);
System.out.println("增加一小时后的日期时间: " + newDateTime);
// 计算两个日期时间之间的天数差
LocalDate anotherDate = LocalDate.of(2023, 1, 1);
long daysBetween = ChronoUnit.DAYS.between(today, anotherDate);
System.out.println("今天与2023-01-01之间的天数差: " + daysBetween);
// 创建带有时区的日期时间
ZonedDateTime zonedDateTime = ZonedDateTime.now();
System.out.println("带时区的日期时间: " + zonedDateTime);
}
}
这段代码展示了Java 8日期和时间API的基本使用,包括获取当前日期、时间和日期时间,格式化和解析日期时间,计算日期时间之间的差异,以及处理带有时区的日期时间。这些是开发者在处理日期和时间时的常见需求,使用Java 8的新API可以更简洁、更安全地完成这些操作。
评论已关闭