求指定两个日期之间相差的天、时、分、秒

/**
	 * 求指定两个日期之间相差的天、时、分、秒
	 * @param startTime 起始时间
	 * @param endTime 结束时间
	 * @param format 日期格式
	 * @return 包含相差的天、时、分、秒
	 */
	public List<Long> dateDiff(String startTime, String endTime, String format) {
		List<Long> lstDateDiff = new ArrayList<Long>(4);
		SimpleDateFormat sd = new SimpleDateFormat(format);
		long nd = 1000 * 24 * 60 * 60;// 一天的毫秒数
		long nh = 1000 * 60 * 60;// 一小时的毫秒数
		long nm = 1000 * 60;// 一分钟的毫秒数
		long ns = 1000;// 一秒钟的毫秒数
		long diff;
		try {
			diff = sd.parse(endTime).getTime() - sd.parse(startTime).getTime();
			long day = diff / nd;// 计算差多少天
			long hour = diff % nd / nh;// 计算差多少小时
			long min = diff % nd % nh / nm;// 计算差多少分钟
			long sec = diff % nd % nh % nm / ns;// 计算差多少秒
			lstDateDiff.add(day);
			lstDateDiff.add(hour);
			lstDateDiff.add(min);
			lstDateDiff.add(sec);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return lstDateDiff;
	}

	public static void main(String[] args) {
		String strDatePattern = "yyyy-MM-dd HH:mm:ss" ;
		List<Long> lstLong = new Test().dateDiff("2010-12-17 9:46:40",
				new SimpleDateFormat(strDatePattern).format(new Date()),strDatePattern);
		System.out.println("时间相差:" + lstLong.get(0) + "天" + lstLong.get(1) + "小时" + lstLong.get(2) + "分钟" + lstLong.get(3) + "秒。");
		
	}
 

你可能感兴趣的:(日期)