在Java中计算两个日期间的天数,大致有2种方法:一是使用原生JDK进行计算,在JDK8中提供了更为直接和完善的方法;二是使用第三方库。

1、使用原生的JDK

  1. private static long daysBetween(Date one, Date two) {
  2. long difference =  (one.getTime()-two.getTime())/86400000;
  3. return Math.abs(difference);
  4. }
    private static long daysBetween(Date one, Date two) {
long difference = (one.getTime()-two.getTime())/86400000;
return Math.abs(difference);
}

这种方式由于计算简单,为广大开发人员所采用。

注意:由于转换成毫秒数计算,如果要获得较为准确的结果,应将日期规整,即将日期的时分秒设置为0:00点整点,避免2日期时间(时分秒)的差异造成计算偏差。

参考代码:

  1. import java.text.SimpleDateFormat;
  2. import java.util.Date;
  3. public class DateTest {
  4. private int getTermDays2() throws Exception{
  5. String sEndDate = "2018-03-01";
  6. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  7. Date date1 = new Date();
  8. Date date2 = sdf.parse(sEndDate);
  9. long days = (date2.getTime() - date1.getTime()) / (24*3600*1000);
  10. long yushu = (date2.getTime() - date1.getTime()) % (24*3600*1000);
  11. System.out.println("days:" + days + ",yushu:" + yushu);
  12. //规整方法1
  13. date1.setHours(0);
  14. date1.setMinutes(0);
  15. date1.setSeconds(0);
  16. long days2 = (date2.getTime() - date1.getTime()) / (24*3600*1000);
  17. long yushu2 = (date2.getTime() - date1.getTime()) % (24*3600*1000);
  18. System.out.println("days2:" + days2 + ",yushu2:" + yushu2);
  19. //规整方法2
  20. String sdate1 = sdf.format(date1);
  21. date1 = sdf.parse(sdate1);
  22. long days3 = (date2.getTime() - date1.getTime()) / (24*3600*1000);
  23. long yushu3 = (date2.getTime() - date1.getTime()) % (24*3600*1000);
  24. System.out.println("days3:" + days3 + ",yushu3:" + yushu3);
  25. return (int)days;
  26. }
  27. public static void main(String[] args) {
  28. DateTest dt = new DateTest();
  29. try {
  30. dt.getTermDays2();
  31. } catch (Exception e) {
  32. e.printStackTrace();
  33. }
  34. }
  35. }
import java.text.SimpleDateFormat;
import java.util.Date; public class DateTest {
private int getTermDays2() throws Exception{
String sEndDate = "2018-03-01";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date1 = new Date();
Date date2 = sdf.parse(sEndDate);
long days = (date2.getTime() - date1.getTime()) / (24*3600*1000);
long yushu = (date2.getTime() - date1.getTime()) % (24*3600*1000); System.out.println("days:" + days + ",yushu:" + yushu); //规整方法1
date1.setHours(0);
date1.setMinutes(0);
date1.setSeconds(0);
long days2 = (date2.getTime() - date1.getTime()) / (24*3600*1000);
long yushu2 = (date2.getTime() - date1.getTime()) % (24*3600*1000); System.out.println("days2:" + days2 + ",yushu2:" + yushu2); //规整方法2
String sdate1 = sdf.format(date1);
date1 = sdf.parse(sdate1); long days3 = (date2.getTime() - date1.getTime()) / (24*3600*1000);
long yushu3 = (date2.getTime() - date1.getTime()) % (24*3600*1000); System.out.println("days3:" + days3 + ",yushu3:" + yushu3); return (int)days;
} public static void main(String[] args) {
DateTest dt = new DateTest();
try {
dt.getTermDays2();
} catch (Exception e) {
e.printStackTrace();
}
} }

规整方法1无法消除毫秒数的影响,结果差1天;规整方法1则可较好地消除时间对天数计算的影响。

因此,计算2个日期间的差别时,若不希望计算时间差异,只计算天数,则一定要先对2个日期进行规整处理,然后再进行计算,否则得到的结果可能会有较大的误差。

2、使用第三方库

使用较多的类库为jodo-time。

http://www.joda.org/joda-time/

参考:

How to Calculate Difference between two Dates in Java (In Days)

 
If you are not running on Java 8, then there are two ways to calculate the difference between two dates in Java in days, either by using standard JDK classes e.g.java.util.Date andjava.util.Calendar or by using the joda-time library. Unfortunately, Java's old Date and Calendar API is buggy and not intuitive, so many of us by default use Joda for all date and time arithmetic. In this example, you will learn how to find  the number of days between today and any date entered by a user using Joda, as well as without using any third party library. When I first time face this problem, I thought what's a big deal about finding the difference between dates? If you can convert Date to milliseconds then finding a number of days, months or years are just a matter of simple arithmetic, but I was WRONG. I was not thinking about real world date and time nuisance like leap seconds, leap years, and daylight saving time.It's very difficult to accurately calculate the difference between two dates in Java without using third party library unless you have time to develop your own library like Joda, which diligently takes these things into consideration. Thankfully, you don't need to worry because Java 8 got lucky third time.There is a new Date and Time API which has corrected previous mistakes and turns out to be a real gem. If you are keen to learn Java 8, not just this API, I suggest you grab a copy of Java 8 in Action, one of the better books to learn new features of Java 8 in quick time.

How to find number of days between two dates in Java

Since java.util.Date class implementsComparable interface it's easy to figure out whether a date come before or after another date, or whether two dates are equal to each other as shownhere, but when it comes tofinding out how many days between two dates? we don't have a simple method likedaysBetween(date1, date2) in JDK library.

 

Unfortunately, this is a quite common requirement, as you may need to find days between today and your next birthday, or how many days to your next insurance premium from today, or simply how many days between last two cricket world cups. In fact, calculating date and time difference is the most common date arithmetic in Java.In this article, we will see two ways to solve this problem, first by using JDK, without using any third party library and second by using the joda-time library.

How to find the difference between two dates in Java?

Though all is not lost, you can quickly write a simple routine to find the difference between two dates in terms of days in Java. How? By converting a date to milliseconds. Once you have milliseconds, you can just subtract them and then again divide them by86400000 (milliseconds per day). This way you will get exactly how many days between two dates in Java. How will you get millisecond from a date in Java? by usinggetTime() method ofjava.util.Date class, as shown below :

 private static long daysBetween(Date one, Date two) {
long difference = (one.getTime()-two.getTime())/86400000;
return Math.abs(difference);
}

This will work 99% of the time, but just like any quick and dirty solution, it will not handle any special cases e.g. time or timezone, leap years, or day light saving time. It will fail on summer boundaries when day light changes occur.
A better solution is to use a tried and tested date and time library like Joda-Time, which handles those tricky scenarios much better. Alternatively, you can also use newjava.time classes from Java 8, which are heavily influenced from the joda-time library. SeeJava SE 8 for Really Impatient by Cay S. Horstmann for more details.
BTW, if you are using JDK 8 then you and use java.time.Period class to calculate the difference between two dates in Java. Here is an example ofcalculating the date and time difference in Java 8, it's super easy and not error prone like earlier API. There is another class called,java.time.Duration, which is good to calculate a time difference between two instant.

How to calculate days between two dates using joda-time in Java?

In order to solve this problem using joda-time, we need to use a class called LocalDate to represent your dates. It is similar to LocalDate class of Java 8, or should I say LocalDate is inspired by this class.  This class knows about the weirdness we just talked about, e.g. some timezones don't have days that start at midnight. You can calculate difference between two dates in joda by using static utility class Days, which has method daysBetween() to return the number of days between two given dates as shown in the following example :

 public static int daysBetweenUsingJoda(Date d1, Date d2){
return Days.daysBetween(
new LocalDate(d1.getTime()),
new LocalDate(d2.getTime())).getDays();
}

You can see that Days.daysBetween() method accepts a LocalDate and its's very easy to convert an instance of java.util.Date to org.joda.time.LocalDate class, just pass a number of milliseconds to it.
Dependency for Joda Time library Joda-Time requires Java SE 5 or later and has no dependencies. There is a compile-time dependency on Joda-Convert, but this is not required at run-time thanks to the magic of annotations. You can downloadjoda-time-2.5.jar either from Maven central or directly from http://www.joda.org/joda-time/ website. If you are using Maven then you can also add the following dependency into your pom.xml file :

<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.5</version>
</dependency>

If you download JAR file then make sure you add joda-time-2.5.jar in your Java program's classpath and you are done.  If you are not sure how to do that, see thistutorial.

Difference between two dates in number of Days

Here is our full Java program to find out how many days between two dates in Java using standard JDK classes and by using open source Joda Time library. I have name aptly named our program "date diff", as its calculating difference between dates.


import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner; import org.joda.time.Days;
import org.joda.time.LocalDate; /**
* Java Program to find number of days between two dates in Java.
* This program calculate difference between two dates in days using two ways
* without using third party library and by using joda-time library.
*
* @author WINDOWS 8
*/ public class DateDiffExample { private static final DateFormat df = new SimpleDateFormat("yyyy/MM/dd"); public static void main(String args[]) throws ParseException{ System.out.println("Please enter two dates in format yyyy/MM/dd to compare");
Scanner reader = new Scanner(System.in); String first = reader.nextLine();
String second = reader.nextLine(); Date one = getDate(first);
Date two = getDate(second); // quick and dirty way, work but not in all conditions
// you can convert date into milliseconds then subtract
// them and again convert it to days
long numberOfDays = daysBetween(one, two);
System.out.printf("Number of days between date %s and %s is : %d %n",
first, second, numberOfDays); // a better way to calculate difference between two dates in Java
// is by using JodaTime library as shown below
int differenceBetweenDates = daysBetweenUsingJoda(one, two);
System.out.printf("difference betweeen two dates %s and %s is : %d %n",
first, second, differenceBetweenDates); reader.close();
} /*
* Simple way to parse String to date in Java
*/
private static Date getDate(String date) throws ParseException{
return df.parse(date);
} /*
* Java Method to calculate difference between two dates in Java
* without using any third party library.
*/
private static long daysBetween(Date one, Date two) {
long difference = (one.getTime()-two.getTime())/86400000;
return Math.abs(difference);
} /*
* Java Method to find number of days between two dates
* in Java using JodaTime library. To find difference
* we first need to convert java.util.Date to LocalDate
* in JodaTime.
*/
public static int daysBetweenUsingJoda(Date d1, Date d2){
return Days.daysBetween(
new LocalDate(d1.getTime()),
new LocalDate(d2.getTime())).getDays();
}
} Output:
Please enter two dates in format yyyy/MM/dd to compare
2014/11/23
2014/11/25
Number of days between date 2014/11/23 and 2014/11/25 is : 2
difference between two dates 2014/11/23 and 2014/11/25 is : 2
 

You can see that number of days between two dates are correct and output of both our own method and joda-time is same.

Java 两个日期间的天数计算的更多相关文章

  1. Oracle计算两天两个日期间相差的天数

    Oracle计算两天两个日期间相差的天数: select to_date('19930411','yyyymmdd')-to_date('19890507','yyyymmdd') from dual ...

  2. MySql获取两个日期间的时间差

    [1]MySql 语言获取两个日期间的时间差 DATEDIFF 函数可以获得两个日期之间的时间差.但是,这个函数得出的结果是天数. 需要直接获取秒数可使用TIMESTAMPDIFF函数.应用示例如下: ...

  3. [Xcode 实际操作]九、实用进阶-(4)计算两个日期间的差值

    目录:[Swift]Xcode实际操作 本文将演示如何计算两个日期之间的差值. 在项目导航区,打开视图控制器的代码文件[ViewController.swift] import UIKit class ...

  4. Java实现 蓝桥杯 算法训练 天数计算

    试题 算法训练 天数计算 问题描述 编写函数求某年某月某日(**** ** **)是这一年的第几天 .提示:要考虑闰年,闰年的2月是29天(闰年的条件:是4的倍数但不是100的倍数,或者是400的倍数 ...

  5. java 计算两个日期间的所有日期

    public static void main(String[] args) { Calendar start = Calendar.getInstance(); start.set(2014, 6, ...

  6. [java]察看两个日期间差多少秒/小时/天

    Java 中Date类getTime()的方法返回从1970-1-1以来的毫秒数,这是下面函数运行的基础. package com.example.demo; import java.text.Par ...

  7. java日期间相隔年月日计算

    /**     * 获取date1相距date2多少天, date2>date1     * @param date1     * @param date2     * @return     ...

  8. python 计算两个日期间的小时数

    #!/usr/bin/env python #encoding: utf-8 import datetime def dateDiffInHours(t1, t2): td = t2 - t1 ret ...

  9. python获取两个日期间的工作日

    import datetime # 计算两个日期之间的工作日数,非天数. class workDays(): def __init__(self, start_date, end_date, days ...

随机推荐

  1. Java_反射机制详解

    本篇文章依旧采用小例子来说明,因为我始终觉的,案例驱动是最好的,要不然只看理论的话,看了也不懂,不过建议大家在看完文章之后,在回过头去看看理论,会有更好的理解. 下面开始正文. [案例1]通过一个对象 ...

  2. sklearn 绘制roc曲线

    from sklearn.metrics import roc_curve, auc import matplotlib as mpl import matplotlib.pyplot as plt ...

  3. kibana加访问控制时报错--Kibana did not load properly.Check the server output for more information.

    错误 在使用kibana的时候,我们需要对可以进行日志访问进行控制,x-pack插件是最好的选择,但是kibana的x-pack插件是收费的,我们本着节约资源的理念(公司的钱也是钱啊,哈哈),我决定使 ...

  4. 小程序之底部tabBar

    用法简介: 1.app.json中配置下tabBar即可,注意tabBar至少需要两个最多五个Item选项 这里简单列举一些属性值:对于tabBar整体属性设置: 对于tabBar中每个Item属性设 ...

  5. Mvc Moq HttpContext

    1: public class MockMvcHttpContext 2: { 3: public Moq.Mock<System.Web.HttpContextBase> Context ...

  6. Apache Spark Exception in thread “main” java.lang.NoClassDefFoundError: scala/collection/GenTraversableOnce$class

    问题: 今天用Maven搭建了一个Spark的Scala项目,运行后遇到下面异常: Apache Spark Exception in thread “main” java.lang.NoClassD ...

  7. static关键字的内存分析

    通常情况下,Java把内存分为栈内存.堆内存和方法区 栈内存用来存放一些基本类型的变量和数组(数组也是一种引用类型)及对象的引用变量 堆内存主要是来放置对象的,即我们在程序中new出来的对象. sta ...

  8. zoj 3286 Very Simple Counting---统计[1,N]相同因子个数

    Very Simple Counting Time Limit: 1 Second      Memory Limit: 32768 KB Let f(n) be the number of fact ...

  9. 悟空模式-java-单例模式

    [那座山,正当顶上,有一块仙石.其石有三丈六尺五寸高,有二丈四尺围圆.三丈六尺五寸高,按周天三百六十五度:二丈四尺围圆,按政历二十四气.上有九窍八孔,按九宫八卦.四面更无树木遮阴,左右倒有芝兰相衬.盖 ...

  10. AutoFac在项目中应用的体会

    AutoFac的工作原理就是:注册类并映射到接口,通过注入后返回相应实例化的类! 先来简单介绍下Autofac的使用      1.通过Nuget或代码安装autofac 安装autofac :ins ...