How to Add days in a date ?
I have a component calendar1 in the page.
When selecting any date, to add 5 days and to put the date in the calendar2
How to do?
Thank you
Do I speak about the south of Brazil, and you?
SimpleDateFormat dataformatada =new SimpleDateFormat("dd/MM/yyyy");
Date minhaDate = ? calendar2
minhaDate.setDate(new Date().getDate() + 5);
String grava_data = dataformatada.format(minhaDate);
calendar2.setText(grava_data);

