Can't seem to figure this out. I'm attempting JSON tree manipulation in GSON, but I have a case where I do not know or have a POJO to convert a string into prior to converting to JsonObject. Is there a way to go directly from a String to JsonObject?

I've tried the following (Scala syntax):

val gson = (new GsonBuilder).create

val a: JsonObject = gson.toJsonTree("""{ "a": "A", "b": true }""").getAsJsonObject
val b: JsonObject = gson.fromJson("""{ "a": "A", "b": true }""", classOf[JsonObject])

but 'a' fails (the JSON is escaped and parsed as a JsonString only) 'b' returns an empty JsonObject.

Any ideas?

Thanks

link|improve this question

73% accept rate
feedback

3 Answers

up vote 15 down vote accepted

use JsonParser; for example:

JsonParser parser = new JsonParser();
JsonObject o = (JsonObject)parser.parse("{\"a\": \"A\"}");
link|improve this answer
Splendid, thanks – 7zark7 Apr 14 '11 at 17:23
feedback

Try to use getAsJsonObject() instead of a straight cast:

JsonObject o = new JsonParser().parse("{\"a\": \"A\"}").getAsJsonObject();
link|improve this answer
feedback

Just encountered the same problem. You can write a trivial custom deserializer for the JsonElement class:

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;

GsonBuilder gson_builder = new GsonBuilder();
gson_builder.registerTypeAdapter(
        JsonElement.class,
        new JsonDeserializer<JsonElement>() {
            @Override
            public JsonElement deserialize(JsonElement arg0,
                    Type arg1,
                    JsonDeserializationContext arg2)
                    throws JsonParseException {

                return arg0;
            }
        } );
Gson gson = gson_builder.create();
JsonElement element = gson.fromJson(
        "{ \"a\": \"A\", \"b\": true }",
        JsonElement.class );
JsonObject object = el.getAsJsonObject();
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.