java.util.Date: seven days ago

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

    try

     Date sevenDay = new Date(System.currentTimeMillis() - 7L * 24 * 3600 * 1000));
    

    Another way is to use Calendar but I don't like using it myself.

提交回复
热议问题