Gson Parse Json with array with different object types

后端 未结 5 1367
梦毁少年i
梦毁少年i 2020-12-09 10:16

How can I parse this JSON using Gson? I have an array with multiple object types and I don\'t know what kind of object I need to create to save this structure. I cannot cha

5条回答
  •  清歌不尽
    2020-12-09 10:46

    The Gson User's Guide explicitly covers this:

    https://sites.google.com/site/gson/gson-user-guide#TOC-Serializing-and-Deserializing-Collection-with-Objects-of-Arbitrary-Types

    You have an object with a field tr that is an array containing arbitrary types.

    The users guide explains that you can't directly deserialize such a structure, and recomends:

    Use Gson's parser API (low-level streaming parser or the DOM parser JsonParser) to parse the array elements and then use Gson.fromJson() on each of the array elements. This is the preferred approach.

    In your case ... it would really depend on what objects were possible in that array. If they are all going to have that same inner object you'd want to do something like...

    List list = new ArrayList();
    JsonArray array = parser.parse(json).getAsJsonObject().getAsJsonArray("tr");
    for (JsonElement je : array)
    {
        Set> set = je.getAsObject().entrySet();
        JsonElement je2 = set.iterator().next().getValue();
    
        MyUserPojo mup = new Gson().fromJson(je2, MyUserPojo.class);
        list.add(mup);
    }
    

    And of course, this would need to be inside a custom deserializer for your actual object that would have the tr and results fields.

    class MyPojo
    {
        List userList;
        int results; 
    }
    
    class MyUserPojo
    {
        String userId;
        String address;
    }
    
    class MyDeserializer implements JsonDeserializer
    {
        @Override
        public MyPojo deserialize(JsonElement je, Type type, JsonDeserializationContext jdc)
                                  throws JsonParseException
        {
            List list = new ArrayList();
            JsonArray array = je.getAsJsonObject().getAsJsonArray("tr");
            for (JsonElement je2 : array)
            {
                Set> set = je2.getAsObject().entrySet();
                JsonElement je3 = set.iterator().next().getValue();                 
    
                MyUserPojo mup = new Gson().fromJson(je3, MyUserPojo.class);
                list.add(mup);
            }
    
            MyPojo mp = new MyPojo();
            mp.tr = list;
            mp.results = je.getAsObject().getAsJsonPrimitive("results").getAsInt();
    
            return mp;
        }
    }
    

    Now you're all set - you can use that deserializer and create your object:

    Gson gson = new GsonBuilder()
                    .registerTypeAdapter(MyPojo.class, new MyDeserializer())
                    .build();
    
    MyPojo mp = gson.fromJson(json, MyPojo.class);
    

    If the a, b etc are important ... well, you'll have to figure that out. But the above should get you well on your way to understanding what's going to be needed to deal with your JSON structure.

    For completeness sake, the only "hacky" way around this is if there is a fairly limited number of those types and the inner object also is fairly limited in terms of its fields. You could create a POJO that encompasses all the possibilities:

    class MyPojo 
    {
        MySecondPojo a;
        MySecondPojo b;
        ...
        MySecondPojo f;
    }
    
    class MySecondPojo
    {
        String userId;
        String address;
        ...
        String someOtherField;
    }
    

    When Gson deserializes JSON it will set any missing fields in your POJO(s) to null. You could now have tr be a List or array of these in your POJO. Again and to emphasize, this is really quite hacky and the wrong way to do it, but I thought I'd explain what would be required to directly parse that array.

提交回复
热议问题