0

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;
    }        
}

1 Answers1

0

Try following:

            SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    SimpleDateFormat sdf1=new SimpleDateFormat("MMM dd yyyy hh:mm:ss");
    app.setCreated(sdf1.format(sdf.parse(json.getString("created"))));
vipul mittal
  • 17,343
  • 3
  • 41
  • 44