目录
LocalDate、LocalTime、LocalDateTime类
java.time.format.DateTimeFormatter 类
JDK8中新日期时间API
背景
JDK 1.0中包含了 一个java.util.Date类,但是它的大多数方法已经在JDK 1.1引入Calendar类之后被弃用 了。而Calendar并不比Date好多少。它们面临的问题是:
可变性:像日期和时间这样的类应该是不可变的。(Calendar是可变的)
偏移性:Date中的年份是从1900开始的,而月份都从0开始。
格式化:格式化只对Date有用,Calendar则不行。
此外,它们也不是线程安全的;不能处理闰秒等。
第三次引入的API是成功的,并且Java 8中引入的java.time API 已经纠正了 过去的缺陷
Java 8 吸收了 Joda-Time 的精华,以一个新的开始为 Java 创建优秀的 API。 新的 java.time 中包含了所有关于本地日期(LocalDate)、本地时间 (LocalTime)、本地日期时间(LocalDateTime)、时区(ZonedDateTime) 和持续时间(Duration)的类。历史悠久的 Date 类新增了 toInstant() 方法, 用于把 Date 转换成新的表示形式。这些新增的本地化时间日期 API 大大简化了日期时间和本地化的管理。
LocalDate、LocalTime、LocalDateTime类
LocalDate、LocalTime、LocalDateTime 类是其中较重要的几个类,它们的实例是不可变的对象,分别表示使用 ISO-8601日历系统的日期、时间、日期和时间。 它们提供了简单的本地日期或时间,并不包含当前的时间信息,也不包含与时区 相关的信息。
- LocalDate代表IOS格式(yyyy-MM-dd)的日期,可以存储 生日、纪念日等日期。
- LocalTime表示一个时间,而不是日期。 LocalDateTime是用来表示日期和时间的,这是一个最常用的类之一。
注:ISO-8601日历系统是国际标准化组织制定的现代公民的日期和时间的表示 法,也就是公历。
常用方法
import org.junit.Test;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
/**
* @auther light
* @Description jdk8中新日期时间API
* @create 2022-11-26 10:59
*/
public class JDK8DateTimeTest {
/**
* LocalDate
* LocalTime
* LocalDateTime
*/
@Test
public void test1(){
//实例化:
// 方式一:now()/*:静态方法,根据当前时间创建对象/指定时区的对象
LocalDate localDate = LocalDate.now();
LocalTime localTime = LocalTime.now();
LocalDateTime localDateTime = LocalDateTime.now();
System.out.println(localDate);
System.out.println(localTime);
System.out.println(localDateTime);
System.out.println("*******************");
//方式二:of():根据指定日期/时间时区的对象
LocalDate localDate1 = LocalDate.of(1994, 12, 07);//year,month,datOdMonth
LocalTime localTime1 = LocalTime.of(11, 11, 11);//hour,minute,second
LocalDateTime localDateTime1 = LocalDateTime.of(1994, 12, 07, 11, 11, 11);//year,month,datOdMonth,hour,minute,second
System.out.println(localDate1);
System.out.println(localTime1);
System.out.println(localDateTime1);
System.out.println("*******************");
//getXXX:获取属性
System.out.println(localDateTime.getDayOfMonth());
System.out.println(localDateTime.getDayOfWeek());
System.out.println(localDateTime.getDayOfYear());
System.out.println("*******************");
//setXXX:设置属性
System.out.println(localDateTime.withDayOfMonth(27));
}
}
运行结果
瞬时:Instant
概念
Instant:时间线上的一个瞬时点。 这可能被用来记录应用程序中的事件时间戳。(类似于java.util.Date类)
在处理时间和日期的时候,我们通常会想到年,月,日,时,分,秒。然而,这只是 时间的一个模型,是面向人类的。第二种通用模型是面向机器的,或者说是连续的。在此模型中,时间线中的一个点表示为一个很大的数,这有利于计算机 处理。在UNIX中,这个数从1970年开始,以秒为的单位;同样的,在Java中, 也是从1970年开始,但以毫秒为单位。
java.time包通过值类型Instant提供机器视图,不提供处理人类意义上的时间单位。Instant表示时间线上的一点,而不需要任何上下文信息,例如,时区。
概念上讲,它只是简单的表示自1970年1月1日0时0分0秒(UTC)开始的秒数。因为java.time包是基于纳秒计算的,所以Instant的精度可以达到纳秒级。
常用方法
格式化与解析日期或时间
java.time.format.DateTimeFormatter 类
java.time.format.DateTimeFormatter 类提供了三种格式化方法:
预定义的标准格式。如: ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIME
本地化相关的格式。如:ofLocalizedDateTime(FormatStyle.LONG)
自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)
(类似于SimpleDateFormat)
import org.junit.Test;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.time.temporal.TemporalAccessor;
/**
* @auther light
* @Description DateTimeFormatter类的使用
* @create 2022-11-28 14:29
*/
public class DateTimeFormatterTest {
@Test
public void test1(){
LocalDateTime localDateTime = LocalDateTime.now();
//实例化
//方式一:预定义的标准格式。如: ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIME
System.out.println("****************方式一*************************");
DateTimeFormatter isoDateTime = DateTimeFormatter.ISO_DATE_TIME;
//格式化:日期---->字符串
String format = isoDateTime.format(localDateTime);
// System.out.println("格式化前:"+localDateTime);
System.out.println("格式化后:"+format);
//解析:字符串---->日期
TemporalAccessor parse = isoDateTime.parse("2022-11-28T14:46:11.56");
System.out.println("解析后:"+parse);
System.out.println("****************方式二*************************");
//方式二:本地化相关的格式。如:ofLocalizedDateTime(FormatStyle.LONG)
//FormatStyle.LONG/FormatStyle.MEDIUM/FormatStyle.SHORT:适用于LocalDateTime
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT);
String format1 = dateTimeFormatter.format(localDateTime);
System.out.println("格式化后:"+format1);
TemporalAccessor parse1 = dateTimeFormatter.parse("22-11-28 下午3:01");
System.out.println("解析后:"+parse1);
//FormatStyle.FULL/FormatStyle.MEDIUM/FormatStyle.SHORT:适用于LocalDate:用法同上
System.out.println("****************方式三(重点)*************************");
//方式三:自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)
DateTimeFormatter dateTimeFormatter1 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
String format2 = dateTimeFormatter1.format(LocalDateTime.now());
System.out.println("格式化后:"+format1);
TemporalAccessor parse2 = dateTimeFormatter1.parse("1111-11-11 11:11:11");
System.out.println("解析后:"+parse2);
}
}
运行结果