Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

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

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();
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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