1.通过gettime()取出Date对应的毫秒值
2.加上需要添加的毫秒值(需要用long类型,数值后要加“L”)
3.使用setTime()设置新的Date数值
实例
Date buydate = new Date();//设置购买时间
long time =buydate.getTime();//设置套餐到期时间
time = time + 31*1*24*60*60*1000L; //两个日期型相加,一定要用long类型,运算时,数值后要加“L”
Date expirtime = new Date();
expirtime.setTime(time);