Search:

Type: Posts; User: GregBrannon

Search: Search took 0.12 seconds.

  1. Re: Start Date should be exactly 1 week before to End Date

    You're welcome.
  2. Re: Start Date should be exactly 1 week before to End Date

    Did you try simply? (untested):

    Calendar c = Calendar.getInstance();
    Date endDate = c.getTime();
    c.add( Calendar.DATE, -7 );
    Date startDate = c.getTime();
Results 1 to 2 of 2