Calendar c = Calendar.getInstance();
//下面这两行一样么?
c.add(Calendar.WEEK_OF_MONTH, -1);
c.add(Calendar.WEEK_OF_YEAR, -1);