java.util.Date: seven days ago

前端 未结 11 1790
孤城傲影
孤城傲影 2020-12-15 04:08

I have a report created in Jasper Reports which ONLY recognizes java.util.Date\'s (not Calendar or Gregorian, etc).

Is there a way to create a date 7 days prior to t

11条回答
  •  执念已碎
    2020-12-15 04:36

    Try this:

    Calendar c = Calendar.getInstance();
    c.add(Calendar.DAY_OF_MONTH, -7);
    return c.getTime();
    

提交回复
热议问题