如何得到当前时间一个月以前的日期?如何得到当前时间一个月以前的日期?[解决办法]//得到当前时间 Calendar t = new GregorianCalendar(); //得到一个月前的时间t t.add(Calendar.MONTH, -1);