我知道有很多关于如何在Java中获取日期的问题,但我想要一个使用新的Java 8日期API的例子。我也知道JodaTime库,但我想要一个不依赖于外部库的方法。
该函数需要符合以下限制:
从日期保存时间防止错误 输入是两个日期对象(没有时间,我知道LocalDateTime,但我需要用日期实例这样做)
我知道有很多关于如何在Java中获取日期的问题,但我想要一个使用新的Java 8日期API的例子。我也知道JodaTime库,但我想要一个不依赖于外部库的方法。
该函数需要符合以下限制:
从日期保存时间防止错误 输入是两个日期对象(没有时间,我知道LocalDateTime,但我需要用日期实例这样做)
当前回答
你可以使用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。
其他回答
使用枚举java.time.temporal.ChronoUnit中的DAYS。下面是示例代码:
输出: *开始日期:2015-03-01到结束日期:2016-03-03的天数为==> 368。 **开始日期:2016-03-03到结束日期:2015-03-01之间的天数==> -368*
package com.bitiknow.date;
import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
/**
*
* @author pradeep
*
*/
public class LocalDateTimeTry {
public static void main(String[] args) {
// Date in String format.
String dateString = "2015-03-01";
// Converting date to Java8 Local date
LocalDate startDate = LocalDate.parse(dateString);
LocalDate endtDate = LocalDate.now();
// Range = End date - Start date
Long range = ChronoUnit.DAYS.between(startDate, endtDate);
System.out.println("Number of days between the start date : " + dateString + " and end date : " + endtDate
+ " is ==> " + range);
range = ChronoUnit.DAYS.between(endtDate, startDate);
System.out.println("Number of days between the start date : " + endtDate + " and end date : " + dateString
+ " is ==> " + range);
}
}
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);
使用最能满足您需求的类或方法:
Duration类, 周期类, 或者ChronoUnit。之间的方法。
Duration使用基于时间的值(秒、纳秒)度量时间量。
Period使用基于日期的值(年、月、日)。
ChronoUnit。当您希望仅以单个时间单位(如天或秒)测量时间量时,Between方法非常有用。
https://docs.oracle.com/javase/tutorial/datetime/iso/period.html
你可以使用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。
给你:
public class DemoDate {
public static void main(String[] args) {
LocalDate today = LocalDate.now();
System.out.println("Current date: " + today);
//add 1 month to the current date
LocalDate date2 = today.plus(1, ChronoUnit.MONTHS);
System.out.println("Next month: " + date2);
// Put latest date 1st and old date 2nd in 'between' method to get -ve date difference
long daysNegative = ChronoUnit.DAYS.between(date2, today);
System.out.println("Days : "+daysNegative);
// Put old date 1st and new date 2nd in 'between' method to get +ve date difference
long datePositive = ChronoUnit.DAYS.between(today, date2);
System.out.println("Days : "+datePositive);
}
}