java - How to return all date of week -
i want return today's date , plus next 7 days. how manage this?
i mean if today's date 31.07.2013 wednesday want returns 1.08.2013 thursday , on...
try this
calendar today = calendar.getinstance(); system.out.println(today.gettime()); today.add(calendar.date,1); system.out.println(today.gettime()); today.add(calendar.date,1); system.out.println(today.gettime());
Comments
Post a Comment