I Have a issue to Change the json date format which i am getting as response to dd-MMM-yyyy
//json response which i am getting in "mmm-dd-yyyy"
String jsondate = map.get("endDate");
Calendar c = Calendar.getInstance();
//date format which i need the output
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MMM-yyyy");
//the json response which i need to set in "dd-mm-yyyy"
viewHolder.end_date.setText(dateFormat.format(c.getTime()));