如何格式化这个Android应用程序中的日期

时间:2014-03-18 13:50:39

标签: android json date format getstring

现在,在我的Android应用中,日期"已创建"格式为:2014-02-21 00:00:00

我希望它采用以下格式:2014年2月21日00:00:00

如果可以在这段代码中重新格式化,有人可以告诉我怎么做?

@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 个答案:

答案 0 :(得分:0)

请尝试以下操作:

            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"))));