zoukankan      html  css  js  c++  java
  • java中两个日期之间的天数

    比如:2020-05-06  到 2020-05-07

    返回两天    代码如下

     1 public class test {
     2     public static int b;
     3     public static void main(String[] args) {13 
    14         String s1="2020-05-06";
    15         String s2="2020-05-07";
    16         SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
    17         try {
    18             Date date = simpleDateFormat.parse(s1);
    19             Date date1 = simpleDateFormat.parse(s2);
    20             int i = differentDays(date,date1);
    21             System.out.println(i+1);
    22         } catch (ParseException e) {
    23             e.printStackTrace();
    24         }
    25 
    26     }
    27 
    28     /**
    29      * date2比date1多的天数
    30      * @param date1
    31      * @param date2
    32      * @return
    33      */
    34     public static int differentDays(Date date1, Date date2)
    35     {
    36         Calendar cal1 = Calendar.getInstance();
    37         cal1.setTime(date1);
    38 
    39         Calendar cal2 = Calendar.getInstance();
    40         cal2.setTime(date2);
    41         int day1= cal1.get(Calendar.DAY_OF_YEAR);
    42         int day2 = cal2.get(Calendar.DAY_OF_YEAR);
    43 
    44         int year1 = cal1.get(Calendar.YEAR);
    45         int year2 = cal2.get(Calendar.YEAR);
    46         if(year1 != year2)   //同一年
    47         {
    48             int timeDistance = 0 ;
    49             for(int i = year1 ; i < year2 ; i ++)
    50             {
    51                 if(i%4==0 && i%100!=0 || i%400==0)    //闰年
    52                 {
    53                     timeDistance += 366;
    54                 }
    55                 else    //不是闰年
    56                 {
    57                     timeDistance += 365;
    58                 }
    59             }
    60 
    61             return timeDistance + (day2-day1) ;
    62         }
    63         else    //不同年
    64         {
    65             return day2-day1;
    66         }
    67     }
    68 }
  • 相关阅读:
    大一励志的我,现在已经大三了
    Jenkins+K8s实现持续集成
    Jenkins搭建自动化测试环境
    软件开发式样书 6
    软件开发式样书 5
    软件开发式样书 4
    软件开发式样书 3
    软件开发式样书 2
    软件开发式样书 1
    Git学习笔记
  • 原文地址:https://www.cnblogs.com/bdjsdl/p/12975162.html
Copyright © 2011-2022 走看看