I want to remove time from Date object.
Date
DateFormat df; String date; df = new SimpleDateFormat(\"dd/MM/yyyy\"); d = eventList.get(0).getStartDate
You can write that for example:
private Date TruncarFecha(Date fechaParametro) throws ParseException { String fecha=""; DateFormat outputFormatter = new SimpleDateFormat("MM/dd/yyyy"); fecha =outputFormatter.format(fechaParametro); return outputFormatter.parse(fecha); }