Java计算两个日期之间的天数

Java中计算两个日期之间的天数,比如说2017/12/062017/12/04之间的天数差为2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* Get a diff between two dates
*
* @param oldDate
* the old date
* @param newDate
* the new date
* @return the diff value, in the days
*/
public static long getDateDiff(SimpleDateFormat format, String oldDate, String newDate) {
try {
return TimeUnit.DAYS.convert(
format.parse(newDate).getTime() - format.parse(oldDate).getTime(),
TimeUnit.MILLISECONDS);
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}

使用方式:

1
2
3
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
long dateDiff = getDateDiff(sdf, "4/12/2017", "6/12/2017");
System.out.println(" days diff is : " + dateDiff);

控制台将输出:

1
days diff is : 2

参考link

0%