I need to format a date and time as Nov 15 2012 18:55 GMT.
Time should be in GMT and 24hr format.I have tried using the following code but it gives time in 12hr format.Is there any way?
DateFormat currentDateTimeString = DateFormat.getDateTimeInstance();
currentDateTimeString.setTimeZone(TimeZone.getTimeZone("gmt"));
gmtTime = currentDateTimeString.format(new Date());