标签:
一个简单的东西。
示例如下:
/**
* 增加时间
* @param oldDate 老时间
* @param addtime 增加的时间
* @return
*/
public Date addDate(Date oldDate,Integer addtime){
oldDate.setTime(oldDate.getTime()+(addtime*60*1000));
return oldDate;
}
标签:
原文地址:http://www.cnblogs.com/ljl-blog/p/5233912.html