欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-14 21:33:22
...

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

  • 工作中遇到的问题,需要查询数据库中的一些数据,这些数据要满足:查询时过去的一个小时内数据有多少条,做了如下工具类来判断查到的数据是否符合条件,有问题欢迎指出!
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);
	}

}
相关标签: *分享 java