I've a array list object in which one of the date time field is 2014-06-13 19:05:00, after converting the list object to json object using Google gson it changes to Jun 13, 2014 7:05:00 PM. I don't want it to convert on its own. Any ideas?
Gson objGson = new Gson();
String messages = objGson.toJson(listMessages);