1. 程式人生 > >Calendar獲取三天前的日期

Calendar獲取三天前的日期

開發環境 jdk 1.8

 @Test
 public void testTime() throws ParseException {
 SimpleDateFormat sj = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
 Calendar calendar = Calendar.getInstance();
        calendar.setTime(new Date());
        calendar.add(Calendar.DATE, -3);
        System.out.println(sj.format
(calendar.getTime())); }

控制檯列印如下