I want to get the date 7 days from what the current date is. I am not to sure what code would be needed.
The code I have to find the current date is:
DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
Calendar cal = Calendar.getInstance();
String date = dateFormat.format(cal.getTime());