My json string response date is in this format:

"due_date":"2011-11-23"

I want to know how can i convert this into a mm/dd/yyyy format.

link|improve this question
1  
What have you tried so far? Perhaps split the string on "-"? – Tobbe Dec 2 '11 at 7:36
feedback

1 Answer

try this

 try {
        JSONObject json = new JSONObject("\"due_date\":\"2011-11-23\"");
        String str = json.get("due_date").toString();
        String format="yyyy-MM-dd";
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        Date date = sdf.parse(str);

    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.