判断给出的时间是否在当前时间过去的一个小时内

判断给出的时间是否在当前时间过去的一个小时内

  • 工作中遇到的问题,需要查询数据库中的一些数据,这些数据要满足:查询时过去的一个小时内数据有多少条,做了如下工具类来判断查到的数据是否符合条件,有问题欢迎指出!
public class DateUtils {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		String time = "15:30:08";
		if(isInAnHour(time)) {
			System.out.println("Yes!");
		}else {
			System.out.println("No!");
		}

	}

	/**
	 * 判断给出的时间是否在当前时间过去的一个小时内
	 * 
	 * @param tempTime
	 * @return
	 */
	public static boolean isInAnHour(String tempTime) {
		SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
		Calendar time = Calendar.getInstance();
		time.set(Calendar.HOUR_OF_DAY, (time.get(Calendar.HOUR_OF_DAY) - 1));
		String aHourAgo = sdf.format(time.getTime());
		Date now = null;
		Date ago = null;
		Date temp = null;
		try {
			now = sdf.parse(getSysTime("HH:mm:ss"));
			ago = sdf.parse(aHourAgo);
			temp = sdf.parse(tempTime);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return ((temp.getTime() - ago.getTime() > 0) && (now.getTime() - temp.getTime() > 0));
	}

	/**
	 * 获取系统时间
	 * 
	 * @param format
	 * @return
	 */
	public static String getSysTime(String format) {
		Date date = new Date();
		if (format == null || format.equals("")) {
			format = "HHmmss";
		}
		SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format);
		return simpleDateFormat.format(date);
	}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值