Hi can anyone tell me how can i change a given timestamp format into other timestamp format
like
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Calendar d1 = Calendar.getInstance();
d1.setTime(formatter.parse("2012-03-08 17:32:56"));
to
"dd-MMM-yyyy HH:mm:ss"
format
format the date with new date format dd-MMM-yyyy HH:mm:ss