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
Since no one has mentioned TimeUnit yet:
TimeUnit
new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(7))