首页 > 学院 > 开发设计 > 正文

java判断两个时间相差的天数

2019-11-14 14:59:34
字体:
来源:转载
供稿:网友

1、实现目标

  输入:两个日期

  输出:两个日期相差的天数

2、代码实现

方法1:

  通过Calendar类的日期比较。注意:这里需要考虑一下:

  •   日期是跨年份的,如一个是2012年,一个是2015年的
  •     年份是分闰年和平年的,各自的天数不同
/**     * date2比date1多的天数     * @param date1         * @param date2     * @return         */    public static int differentDays(Date date1,Date date2)    {        Calendar cal1 = Calendar.getInstance();        cal1.setTime(date1);                Calendar cal2 = Calendar.getInstance();        cal2.setTime(date2);       int day1= cal1.get(Calendar.DAY_OF_YEAR);        int day2 = cal2.get(Calendar.DAY_OF_YEAR);                int year1 = cal1.get(Calendar.YEAR);        int year2 = cal2.get(Calendar.YEAR);        if(year1 != year2)   //同一年        {            int timeDistance = 0 ;            for(int i = year1 ; i < year2 ; i ++)            {                if(i%4==0 && i%100!=0 || i%400==0)    //闰年                            {                    timeDistance += 366;                }                else    //不是闰年                {                    timeDistance += 365;                }            }                        return timeDistance + (day2-day1) ;        }        else    //不同年        {            System.out.PRintln("判断day2 - day1 : " + (day2-day1));            return day2-day1;        }    }

方法2:

  直接通过计算两个日期的毫秒数,他们的差除以一天的毫秒数,即可得到我们想要的两个日期相差的天数。

  /**     * 通过时间秒毫秒数判断两个时间的间隔     * @param date1     * @param date2     * @return     */    public static int differentDaysByMillisecond(Date date1,Date date2)    {        int days = (int) ((date2.getTime() - date1.getTime()) / (1000*3600*24));        return days;    }

测试:

public static void main(String[] args)     {        String dateStr = "2008-1-1 1:21:28";        String dateStr2 = "2010-1-2 1:21:28";        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        try         {            Date date2 = format.parse(dateStr2);            Date date = format.parse(dateStr);                        System.out.println("两个日期的差距:" + differentDays(date,date2));            System.out.println("两个日期的差距:" + differentDaysByMillisecond(date,date2));        } catch (ParseException e) {            e.printStackTrace();        }    }

结果:

两个日期的差距:732两个日期的差距:732

两种实现方式的比较:

  方式一的话,只是通过日期来进行比较两个日期的相差天数的比较,没有精确到相差到一天的时间。如果是只是纯粹通过日期(年月日)来比较比较的话就是方式一。

  对于方式二,是通过计算两个日期相差的毫秒数来计算两个日期的天数差的。一样会有一个小问题,就是当他们相差是23个小时的时候,它就不算一天了。如下面的两个日期

2015-1-1 21:21:282015-1-2 1:21:28

测试代码:

public static void main(String[] args)     {        String dateStr = "2015-1-1 21:21:28";        String dateStr2 = "2015-1-2 1:21:28";        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        try         {            Date date2 = format.parse(dateStr2);            Date date = format.parse(dateStr);                        System.out.println("两个日期的差距:" + differentDays(date,date2));            System.out.println("两个日期的差距:" + differentDaysByMillisecond(date,date2));        } catch (ParseException e) {            e.printStackTrace();        }    }

结果:

两个日期的差距:1两个日期的差距:0

  两种方式的不同了,在具体时间相差不到24小时时,方式2的方式不算一天,而方式1是通过日期(年月日)来判断的,所以算相差一天。

 

  源码下载:https://github.com/zcr1007391008/timeDifferent

  致谢:感谢您的阅读!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表