java.util.Date: seven days ago

前端 未结 11 1782
孤城傲影
孤城傲影 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:27

    Since no one has mentioned TimeUnit yet:

    new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(7))
    

提交回复
热议问题