In my Android app right now the date "created" is in this format: 2014-02-21 00:00:00
I would like it to be in this format: Feb 21 2014 00:00:00
If it is possible to reformat it in this bit of code, could someone please show me how?
@Override
protected void onPostExecute(String sJson) {
if(sJson == null) {
if(listener != null) listener.onFetchFailure(msg);
return;
}
try {
// convert json string to json array
JSONArray aJson = new JSONArray(sJson);
// create apps list
List<Application> apps = new ArrayList<Application>();
for(int i=0; i<aJson.length(); i++) {
JSONObject json = aJson.getJSONObject(i);
Application app = new Application();
app.setTitle(json.getString("app_title"));
app.setDesc(json.getString("description"));
app.setCreator(json.getString("creator"));
app.setCreated(json.getString("created"));
app.setRank(json.getString("rating"));
app.setIcon(json.getString("icon"));
// add the app to apps list
apps.add(app);
}
//notify the activity that fetch data has been complete
if(listener != null) listener.onFetchComplete(apps);
} catch (JSONException e) {
msg = "Invalid response";
if(listener != null) listener.onFetchFailure(msg);
return;
}
}