更新時(shí)間:2023-08-08 來源:黑馬程序員 瀏覽量:
從Java 8開始,java.time包提供了新的日期和時(shí)間API,新增的API嚴(yán)格區(qū)分了時(shí)刻、本地日期、本地時(shí)間,并且,對(duì)日期和時(shí)間進(jìn)行運(yùn)算更加方便。主要涉及的類型有以下幾類:
LocalDate:不包含具體時(shí)間的日期。
LocalTime:不含日期的時(shí)間。
LocalDateTime:包含了日期及時(shí)間。
Instant:代表的是時(shí)間戳。
DateTimeFormatter 用于做時(shí)間的格式化和解析的
Duration:用于計(jì)算兩個(gè)“時(shí)間”間隔
Period:用于計(jì)算兩個(gè)“日期”間隔
新API的類型幾乎全部是不變類型(和String的使用類似),可以放心使用不必?fù)?dān)心被修改。其中LocalDate、LocalTime、LocalDateTime,分別表示日期,時(shí)間,日期時(shí)間對(duì)象,他們的類的實(shí)例是不可變的對(duì)象。他們?nèi)邩?gòu)建對(duì)象和API都是通用的。
構(gòu)建對(duì)象的方式如下:
LocalDate、LocalTime、LocalDateTime獲取信息的API。
修改相關(guān)的API
LocalDateTime 綜合了 LocalDate 和 LocalTime 里面的方法,所以下面只用 LocalDate 和 LocalTime 來舉例。這些方法返回的是一個(gè)新的實(shí)例引用,因?yàn)長ocalDateTime 、LocalDate 、LocalTime 都是不可變的。
Instant時(shí)間戳
JDK8獲取時(shí)間戳特別簡單,且功能更豐富。Instant類由一個(gè)靜態(tài)的工廠方法now()可以返回當(dāng)前時(shí)間戳。
Instant instant = Instant.now(); System.out.println("當(dāng)前時(shí)間戳是:" + instant); Date date = Date.from(instant); System.out.println("當(dāng)前時(shí)間戳是:" + date); instant = date.toInstant(); System.out.println(instant);
時(shí)間戳是包含日期和時(shí)間的,與java.util.Date很類似,事實(shí)上Instant就是類似JDK8 以前的Date。Instant和Date這兩個(gè)類可以進(jìn)行轉(zhuǎn)換。
DateTimeFormatter
在JDK8中,引入了一個(gè)全新的日期與時(shí)間格式器DateTimeFormatter。正反都能調(diào)用format方法。
LocalDateTime ldt = LocalDateTime.now(); System.out.println(ldt);//2021-03-01T15:09:17.444190900 DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); String ldtStr = ldt.format(dtf); System.out.println(ldtStr);//2021-03-01 15:09:17 String ldtStr1 = dtf.format(ldt); System.out.println(ldtStr1);//2021-03-01 15:09:17
Period
在Java8中,我們可以使用以下類來計(jì)算日期間隔差異:java.time.Period。主要是 Period 類方法
getYears(),getMonths() 和 getDays() 來計(jì)算,只能精確到年月日。用于 LocalDate 之間的比較。
LocalDate today = LocalDate.now(); System.out.println(today); // 2021-03-01 LocalDate birthDate = LocalDate.of(1995, 1, 11); System.out.println(birthDate); // 1995-01-11 Period period = Period.between(birthDate, today); System.out.printf("年齡 : %d 年 %d 月 %d 日", period.getYears(), period.getMonths(), period.getDays());
Duration
在Java8中,我們可以使用以下類來計(jì)算時(shí)間間隔差異:java.time.Duration,基于時(shí)間的值,測(cè)量時(shí)間量的方法。用于 LocalDateTime 之間的比較。也可用于 Instant 之間的比較。
LocalDateTime today = LocalDateTime.now(); System.out.println(today); LocalDateTime birthDate = LocalDateTime.of(1990,10,1,10,50,30); System.out.println(birthDate); Duration duration = Duration.between(birthDate, today);//第二個(gè)參數(shù)減第一個(gè)參數(shù) System.out.println(duration.toDays());//兩個(gè)時(shí)間差的天數(shù) System.out.println(duration.toHours());//兩個(gè)時(shí)間差的小時(shí)數(shù) System.out.println(duration.toMinutes());//兩個(gè)時(shí)間差的分鐘數(shù) System.out.println(duration.toMillis());//兩個(gè)時(shí)間差的毫秒數(shù) System.out.println(duration.toNanos());//兩個(gè)時(shí)間差的納秒數(shù)
Duration用于計(jì)算兩個(gè)“時(shí)間”間隔。 Period用于計(jì)算兩個(gè)“日期”間隔。
Java.time.temporal.ChronoUnit
ChronoUnit類可用于在單個(gè)時(shí)間單位內(nèi)測(cè)量一段時(shí)間,這個(gè)工具類是最全的了,可以用于比較所有的時(shí)間單位。
LocalDateTime today = LocalDateTime.now(); System.out.println(today); LocalDateTime birthDate = LocalDateTime.of(1990,10,1,10,50,30); System.out.println(birthDate); System.out.println("相差的年數(shù):" + ChronoUnit.YEARS.between(birthDate, today)); System.out.println("相差的月數(shù):" + ChronoUnit.MONTHS.between(birthDate, today)); System.out.println("相差的周數(shù):" + ChronoUnit.WEEKS.between(birthDate, today)); System.out.println("相差的天數(shù):" + ChronoUnit.DAYS.between(birthDate, today)); System.out.println("相差的時(shí)數(shù):" + ChronoUnit.HOURS.between(birthDate, today)); System.out.println("相差的分?jǐn)?shù):" + ChronoUnit.MINUTES.between(birthDate, today)); System.out.println("相差的秒數(shù):" + ChronoUnit.SECONDS.between(birthDate, today)); System.out.println("相差的毫秒數(shù):" + ChronoUnit.MILLIS.between(birthDate, today)); System.out.println("相差的微秒數(shù):" + ChronoUnit.MICROS.between(birthDate, today)); System.out.println("相差的納秒數(shù):" + ChronoUnit.NANOS.between(birthDate, today)); System.out.println("相差的半天數(shù):" + ChronoUnit.HALF_DAYS.between(birthDate, today)); System.out.println("相差的十年數(shù):" + ChronoUnit.DECADES.between(birthDate, today)); System.out.println("相差的世紀(jì)(百年)數(shù):" + ChronoUnit.CENTURIES.between(birthDate, today)); System.out.println("相差的千年數(shù):" + ChronoUnit.MILLENNIA.between(birthDate, today)); System.out.println("相差的紀(jì)元數(shù):" + ChronoUnit.ERAS.between(birthDate, today));