对于时间的运算,应当使用Calendar:
Calendar c = Calendar.getInstance(); //now
c.add(Calendar.HOUR, -24);
Date threshold = c.getTime();
对于时间的运算,应当使用Calendar:
Calendar c = Calendar.getInstance(); //now
c.add(Calendar.HOUR, -24);
Date threshold = c.getTime();