這篇文章給大家分享的是有關(guān)Java8計(jì)算日期時(shí)間差的示例的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
目前創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、兗州網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。
1 Period類
方法getYears(),getMonths()和getDays()。
import java.time.LocalDate;import java.time.Month;import java.time.Period;public class Test { public static void main(String[] args) { LocalDate today = LocalDate.now(); System.out.println("Today : " + today); LocalDate birthDate = LocalDate.of(1993, Month.OCTOBER, 19); System.out.println("BirthDate : " + birthDate); Period p = Period.between(birthDate, today); System.out.printf("年齡 : %d 年 %d 月 %d 日", p.getYears(), p.getMonths(), p.getDays()); }}
Today : 2017-06-16BirthDate : 1993-10-19年齡 : 23 年 7 月 28 日
2 Duration類
基于時(shí)間的值(如秒,納秒)測(cè)量時(shí)間量的方法。
import java.time.Duration;import java.time.Instant;public class Test { public static void main(String[] args) { Instant inst1 = Instant.now(); System.out.println("Inst1 : " + inst1); Instant inst2 = inst1.plus(Duration.ofSeconds(10)); System.out.println("Inst2 : " + inst2); System.out.println("Difference in milliseconds : " + Duration.between(inst1, inst2).toMillis()); System.out.println("Difference in seconds : " + Duration.between(inst1, inst2).getSeconds()); }}
Inst1 : 2017-06-16T07:46:45.085Z Inst2 : 2017-06-16T07:46:55.085Z Difference in milliseconds : 10000Difference in seconds : 10
3 ChronoUnit類
ChronoUnit類可用于在單個(gè)時(shí)間單位內(nèi)測(cè)量一段時(shí)間,例如天數(shù)或秒。
以下是使用between()方法來查找兩個(gè)日期之間的區(qū)別的示例。
import java.time.LocalDate;import java.time.Month;import java.time.temporal.ChronoUnit;public class Test { public static void main(String[] args) { LocalDate startDate = LocalDate.of(1993, Month.OCTOBER, 19); System.out.println("開始時(shí)間 : " + startDate); LocalDate endDate = LocalDate.of(2017, Month.JUNE, 16); System.out.println("結(jié)束時(shí)間 : " + endDate); long daysDiff = ChronoUnit.DAYS.between(startDate, endDate); System.out.println("兩天之間的差在天數(shù) : " + daysDiff); }}
開始時(shí)間 : 1993-10-19 結(jié)束時(shí)間 : 2017-06-16 兩天之間的差在天數(shù) : 8641
感謝各位的閱讀!關(guān)于“Java8計(jì)算日期時(shí)間差的示例”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!