1. 程式人生 > >查找10天前日期

查找10天前日期

查找10天前日期

int fiandDate=-10; SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日"); Date date = new Date(); Calendar calendar = new GregorianCalendar(); calendar.setTime(date); //正數往後,負數往前 calendar.add(calendar.DATE, fiandDate); date=calendar.getTime(); String putDate = sdf.format(date); System.out.println(putDate);

查找10天前日期