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

How do I parse this particular json string with Gson in Java?

{"orders":[{"oid":"347","status":"1"},{"oid":"348","status":"1"}],"a":14.15,"b":0}

What is problematic is the orders list.

I suppose one has to use a "type token" parameter to Gson.parse(json,type-toke), but it is not clear to me how this can be done.

share|improve this question

1 Answer

up vote 3 down vote accepted

You have to create java types that it can be mapped to. So, you would have something like this.

public class Result {
    private List<Order> orders;
    private Number a;
    private Number b;

    // getter and setter for orders, a, and b
}

public class Order {
    private Number oid;
    private Number status;
    // getter and setter for oid and status
}

Then you can just do the parsing with something like

Result result = gson.fromJson( yourSring, Result.class );

caveat, this is uncompiled, untested code, but should get you close.

share|improve this answer
This works. I thought it would involve something more complicated. – Don Johnson Apr 21 '11 at 20:25
fortunately not :) – digitaljoel Apr 21 '11 at 20:32

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.