判断开始时间是否在终点时间的两个月范围内

public static boolean monthSpace(String beginTime, String endTime)
			throws ParseException {

		int result = 0;// Calculate the total number between the month
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd");
		Calendar bef = Calendar.getInstance();
		Calendar aft = Calendar.getInstance();

		bef.setTime(sdf.parse(beginTime));
		aft.setTime(sdf.parse(endTime));
		// Calculate the year
		int year = aft.get(Calendar.YEAR) - bef.get(Calendar.YEAR);
		// Calculate the month
		int month = aft.get(Calendar.MONTH) - bef.get(Calendar.MONTH);
		result = year * 12 + month;

		if (result > 2) {
			// if result is larger than 2 then return false
			return false;
		} else if (2 == result) {
			if ((aft.get(Calendar.DAY_OF_MONTH) - bef
					.get(Calendar.DAY_OF_MONTH)) > 0) {
				return false;
			} else {
				return true;
			}
		} else {

			return true;
		}
	}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值