我知道有很多关于如何在Java中获取日期的问题,但我想要一个使用新的Java 8日期API的例子。我也知道JodaTime库,但我想要一个不依赖于外部库的方法。
该函数需要符合以下限制:
从日期保存时间防止错误 输入是两个日期对象(没有时间,我知道LocalDateTime,但我需要用日期实例这样做)
我知道有很多关于如何在Java中获取日期的问题,但我想要一个使用新的Java 8日期API的例子。我也知道JodaTime库,但我想要一个不依赖于外部库的方法。
该函数需要符合以下限制:
从日期保存时间防止错误 输入是两个日期对象(没有时间,我知道LocalDateTime,但我需要用日期实例这样做)
当前回答
使用最能满足您需求的类或方法:
Duration类, 周期类, 或者ChronoUnit。之间的方法。
Duration使用基于时间的值(秒、纳秒)度量时间量。
Period使用基于日期的值(年、月、日)。
ChronoUnit。当您希望仅以单个时间单位(如天或秒)测量时间量时,Between方法非常有用。
https://docs.oracle.com/javase/tutorial/datetime/iso/period.html
其他回答
使用最能满足您需求的类或方法:
Duration类, 周期类, 或者ChronoUnit。之间的方法。
Duration使用基于时间的值(秒、纳秒)度量时间量。
Period使用基于日期的值(年、月、日)。
ChronoUnit。当您希望仅以单个时间单位(如天或秒)测量时间量时,Between方法非常有用。
https://docs.oracle.com/javase/tutorial/datetime/iso/period.html
使用枚举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);
}
}
给你:
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);
}
}
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);
如果你想要逻辑日历日,请使用java.time.temporal.ChronoUnit中的days .between()方法:
LocalDate dateBefore;
LocalDate dateAfter;
long daysBetween = DAYS.between(dateBefore, dateAfter);
如果你想要24小时的天,(一个duration),你可以使用duration类:
LocalDate today = LocalDate.now()
LocalDate yesterday = today.minusDays(1);
// Duration oneDay = Duration.between(today, yesterday); // throws an exception
Duration.between(today.atStartOfDay(), yesterday.atStartOfDay()).toDays() // another option
更多信息请参考本文档。