1. LocalDate 和 LocalTime:
LocalDate 表示一个日期,LocalTime 表示一个时间。你可以使用它们创建日期和时间对象。
import java.time.LocalDate;
import java.time.LocalTime;
public class LocalDateAndTimeExample {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
System.out.println("Current Date: " + currentDate);
// 获取当前时间
LocalTime currentTime = LocalTime.now();
System.out.println("Current Time: " + currentTime);
}
}
2. LocalDateTime:
LocalDateTime 表示日期和时间的组合。
import java.time.LocalDateTime;
public class LocalDateTimeExample {
public static void main(String[] args) {
// 获取当前日期和时间
LocalDateTime currentDateTime = LocalDateTime.now();
System.out.println("Current Date and Time: " + currentDateTime);
}
}
3. 日期时间格式化:
可以使用 DateTimeFormatter 类进行日期时间格式化。
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class DateTimeFormattingExample {
public static void main(String[] args) {
// 获取当前日期和时间
LocalDateTime currentDateTime = LocalDateTime.now();
// 创建日期时间格式化器
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
// 格式化日期时间
String formattedDateTime = currentDateTime.format(formatter);
System.out.println("Formatted Date and Time: " + formattedDateTime);
}
}
4. 日期时间计算:
可以使用 plus 和 minus 方法对日期和时间进行加减操作。
import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
public class DateTimeCalculationExample {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 加 1 天
LocalDate nextDay = currentDate.plusDays(1);
System.out.println("Next day: " + nextDay);
// 减 1 月
LocalDate lastMonth = currentDate.minus(1, ChronoUnit.MONTHS);
System.out.println("Last month: " + lastMonth);
}
}
5. 比较日期时间:
可以使用 compareTo 方法比较两个日期时间。
import java.time.LocalDateTime;
public class DateTimeComparisonExample {
public static void main(String[] args) {
// 获取当前日期和时间
LocalDateTime currentDateTime = LocalDateTime.now();
// 创建另一个日期时间对象
LocalDateTime anotherDateTime = LocalDateTime.of(2022, 1, 1, 12, 0);
// 比较日期时间
int comparisonResult = currentDateTime.compareTo(anotherDateTime);
if (comparisonResult > 0) {
System.out.println("Current date and time is after another date and time.");
} else if (comparisonResult < 0) {
System.out.println("Current date and time is before another date and time.");
} else {
System.out.println("Both date and time are equal.");
}
}
}
6. 时区:
可以使用 ZoneId 和 ZonedDateTime 处理时区信息。
import java.time.ZoneId;
import java.time.ZonedDateTime;
public class TimeZoneExample {
public static void main(String[] args) {
// 获取当前日期和时间(带时区信息)
ZonedDateTime currentDateTimeWithZone = ZonedDateTime.now(ZoneId.of("America/New_York"));
System.out.println("Current Date and Time with Zone: " + currentDateTimeWithZone);
}
}
以上是一个简单的 Java 日期时间教程,介绍了新的日期和时间 API 的基本概念和用法。这个 API 提供了许多功能,包括日期时间格式化、时区处理、日期时间计算等,使得在处理日期和时间时更加灵活和方便。
转载请注明出处:http://www.pingtaimeng.com/article/detail/464/Java