java获取两日期的间隔天数

本文提供了一种计算两个日期之间天数差距的方法,适用于多种日期格式。通过使用Java编程语言,介绍了如何处理不同日期格式的转换,并计算出两个日期间的实际天数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

这是我程序中用到的方法,传入的日期格式,可根据自己的需要作相应的改变。

/**
* 读取两个日期之间的天数
* @param begin  yyyy-mm-dd 
* @param end  yyyymmdd 
* @return
*/
public static int getDays(Date begin,String end) throws Exception{
		String strend=end.substring(0,4)+"-"+end.substring(4,6)+"-"+end.substring(6,8);
		int days=getBetweenDays(begin.toString(), strend); 
		return days;
	}
	
/** 
* 取得两个时间段的时间间隔 
* return t2 与t1的间隔天数 
* throws ParseException 如果输入的日期格式不是0000-00-00 格式抛出异常 
*/ 
public static int getBetweenDays(String t1,String t2) throws ParseException{ 
		DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); 
		int betweenDays = 0; 
		Date d1 = format.parse(t1); 
		Date d2 = format.parse(t2); 
		Calendar c1 = Calendar.getInstance(); 
		Calendar c2 = Calendar.getInstance(); 
		c1.setTime(d1); 
		c2.setTime(d2); 
		// 保证第二个时间一定大于第一个时间 
		if(c1.after(c2)){ 
			c1 = c2; 
			c2.setTime(d1); 
		} 
		int betweenYears = c2.get(Calendar.YEAR)-c1.get(Calendar.YEAR); 
		betweenDays = c2.get(Calendar.DAY_OF_YEAR)-c1.get(Calendar.DAY_OF_YEAR); 
		for(int i=0;i<betweenYears;i++){ 
			int tmp=countDays(c1.get(Calendar.YEAR));
			betweenDays+=countDays(c1.get(Calendar.YEAR));
			c1.set(Calendar.YEAR,(c1.get(Calendar.YEAR)+1)); 
		} 
		return betweenDays; 
	} 
	public static int countDays(int year){
		int n=0;
		for (int i = 1; i <= 12; i++) {  
            n += countDays(i,year);  
		}  
		return n;
	}
	

public static int countDays(int month, int year){  
        int count = -1;  
        switch(month){  
          case 1:  
          case 3:     
          case 5:  
          case 7:  
          case 8:  
          case 10:  
          case 12:  
            count = 31;  
            break;  
          case 4:  
          case 6:  
          case 9:  
          case 11:  
              count = 30;  
              break;  
          case 2:  
              if(year % 4 == 0)  
                  count = 29;  
              else  
                  count = 28;  
              if((year % 100 ==0) & (year % 400 != 0))  
                      count = 28;  
        }  
        return count;  
    }  

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值