阅读更多
public static Date addOrMinusYear(long ti, int i) throws Exception {
Date rtn = null;
GregorianCalendar cal = new GregorianCalendar();
Date date = new Date(ti);
cal.setTime(date);
cal.add(1, i);
rtn = cal.getTime();
return rtn;
}
这样你就可以对当前时间进行年份的加减,比如求一年后i=1,取1年前i=-1
如果是月份加减cal.add(2, i);
如果是星期加减cal.add(3, i);
如果是每日加减cal.add(5, i);
如果是小时加减cal.add(10, i);
如果是分钟加减cal.add(12, i);
如果是秒的加减cal.add(13, i);
*******************************************************************************
/**
* this method add by 子龙
* 日期的基础上增加小时数
* @param date
* @param h 增加的小时数(正数为加,负数为减)
* @param m 增加的分数 (正数为加,负数为减)
* @param s 增加的秒数 (正数为加,负数为减)
* @return
*/
public static Date addHours(Date date,Integer h,Integer m,Integer s){
Calendar c = Calendar.getInstance();
c.setTime(date);
if(null != h){
c.add(Calendar.HOUR,h);
}
if(null != m){
c.add(Calendar.MINUTE,s);
}
if(null != s){
c.add(Calendar.SECOND,s);
}
Date newDate = c.getTime();
return newDate;
}