How to add 10 days to the current date using Calendar?
Calendar
date.add(Calendar.DATE, 10);
date.plusDays(10);
date.setDayOfMonth(10);
date.add(10);