that's one of the functions of the java.util.Calendar: http://java.sun.com/javase/6/docs/api/java/util/Calendar.html
Date date;
//...
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.DATE, 7);
date = cal.getTime();
System.out.println(date);