我知道有很多关于如何在Java中获取日期的问题,但我想要一个使用新的Java 8日期API的例子。我也知道JodaTime库,但我想要一个不依赖于外部库的方法。

该函数需要符合以下限制:

从日期保存时间防止错误 输入是两个日期对象(没有时间,我知道LocalDateTime,但我需要用日期实例这样做)


当前回答

DAYS.between

你可以使用DAYS。from java.time.temporal.ChronoUnit

e.g.

import java.time.temporal.ChronoUnit;
...

long totalDaysBetween(LocalDate dateBefore, LocalDate dateAfter) {
    return DAYS.between(dateBefore, dateAfter);

其他回答

每个人都说使用chronounit。days。between但那只是委托给另一个你可以自己调用的方法。你也可以使用firstDate。直到(secondDate ChronoUnit.DAYS)。

这两种方法的文档实际上都提到了这两种方法,并说使用哪一种更易于阅读。

使用最能满足您需求的类或方法:

Duration类, 周期类, 或者ChronoUnit。之间的方法。

Duration使用基于时间的值(秒、纳秒)度量时间量。

Period使用基于日期的值(年、月、日)。

ChronoUnit。当您希望仅以单个时间单位(如天或秒)测量时间量时,Between方法非常有用。

https://docs.oracle.com/javase/tutorial/datetime/iso/period.html

DAYS.between

你可以使用DAYS。from java.time.temporal.ChronoUnit

e.g.

import java.time.temporal.ChronoUnit;
...

long totalDaysBetween(LocalDate dateBefore, LocalDate dateAfter) {
    return DAYS.between(dateBefore, dateAfter);

你可以使用until:

LocalDate independenceDay = LocalDate.of(2014, Month.JULY, 4);
LocalDate christmas = LocalDate.of(2014, Month.DECEMBER, 25);

System.out.println("Until christmas: " + independenceDay.until(christmas));
System.out.println("Until christmas (with crono): " + independenceDay.until(christmas, ChronoUnit.DAYS));

输出:

Until christmas: P5M21D
Until christmas (with crono): 174

如注释中所述,如果在返回Period之前没有指定单位。

文档片段:

ISO-8601日历系统中基于日期的时间量,例如“2年3个月4天”。 该类以年、月和日为单位对时间的数量或数量进行建模。有关该类的基于时间的等价物,请参见Duration。

import java.time.LocalDate;
import java.time.temporal.ChronoUnit;

LocalDate dateBefore =  LocalDate.of(2020, 05, 20);
LocalDate dateAfter = LocalDate.now();
    
long daysBetween =  ChronoUnit.DAYS.between(dateBefore, dateAfter);
long monthsBetween= ChronoUnit.MONTHS.between(dateBefore, dateAfter);
long yearsBetween= ChronoUnit.YEARS.between(dateBefore, dateAfter);
    
System.out.println(daysBetween);