I have this code
String date = "18/06/2014";
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(date));
c.add(Calendar.DATE, +2);
I'm trying to get formatted date object from calendar object but without any success. Do you have any suggestion?