I want to convert 24 Hour time into 12 Hour AM/PM time. e.g:- How to convert date 2012-03-20T22:30:00.000+05:30 to to 2012-03-20 10:30 PM??
I have extratced the date but
Try this:
String dateStr = new SimpleDateFormat("yyyy-MM-dd hh:mm a").format(new Date());