*不说废话,直接上代码:
/**
* @description 获取*单位后的时间
* @param num 时间单位数(如果num数为负数,说明是此日期前的天数)
* @param Calendar.HOUR 时间类型:小时
*/
public static Date getDateByAdd(Date date, int num, Calendar.HOUR) {
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(timeType, num);
return cal.getTime();
}