I'm having problem when I try to serialize my object using Gson.

@XmlRootElement
class Foo implements Serializable {
    private int number;
    private String str;

    public Foo() {
        number = 10;
        str = "hello";
    }
}

Gson will serialize this into a JSON {"number":10,"str":"hello"}. However, I want it to be {"Foo":{"number":10,"str":"hello"}}, so basically including the top level element. I tried to google a way to do this in gson, but no luck. Anyone knows is there a way for me to achieve this?

Thanks!

link|improve this question

43% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You need to add the element at the top of the the object tree. Something like this:

    Gson gson = new Gson();
    JsonElement je = gson.toJsonTree(new Foo());
    JsonObject jo = new JsonObject();
    jo.add("Foo", je);
    System.out.println(jo.toString()); //prints {"Foo":{"number":10,"str":"hello"}}
link|improve this answer
well, this means i need to hardcode the class type "Foo" into the element though. – fei Jan 7 '11 at 21:41
@fei yes. Ideally, what You are getting from Gson is correct. The correct representation of Foo object in JSON is {"number":10,"str":"hello"}. If there is a class which has Foo as it's instance variable in that case you should have expected {"foo":{"number":10,"str":"hello"}} -- but if you want to prepend class name explicitly, you will have to add it explicitly. – Nishant Jan 7 '11 at 21:49
feedback

Instead of hardcoding the type you can do:

...
jo.add(Foo.getClass().getSimpleName(), je);
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.