GSON: Json deserialization with random class names

I'm trying to use GSON to deserialize some Json for a nice, neat object. I have now managed to get Json to display some of the more obvious variables correctly. However, while trying to match some of the Json I came across this:

{
    "this_number": 1,
    "that_number": 12,
    "some_string": "String!",
    "list_of_objects": {
        "342356676784653234535345": {
            "random_double": "0.1235667456456",
            "magic": "29",
            "health": 1,
            "price": 7,
            "point": {
                "x": 2,
                "y": 70
            }
        },
        "2345263767467354": {
            "random_double": "0.1235667456456",
            "magic": "23",
            "health": 1,
            "price": 9,
            "point": {
                "x": 0,
                "y": 70
            }
        }
    }
}

      

This displayed well until I came to "list_of_objects"

. I can't let life determine me how to realize it. I think the main problem is that they are no longer static class names, they are randomized. Therefore, it would be completely impractical (and impossible) to write something like:

class 342356676784653234535345{
    double random_double = 0.0;
    //etc
}

      

I have looked around Stackoverflow but the answers seem to be quite complicated and many do not quite answer what I want to know.

I've played around with the normal Object method used here , but I couldn't find any further information on how to use it.

I also keep finding references to mapping to typical types, but I'm not quite sure what is going on. for example

+1


source to share


2 answers


You can convert JSON string to Java equivalent object using custom Gson JsonDeserializer

Assuming you have display classes

public class Data {
    private int this_number;
    private int that_number;
    private String some_string;
    private List<DataInfo> objects;
}

public class DataInfo {
    private double random_double;
    private int magic;
    private int health;
    private int price;
}

public class Point {
    int x ;
    int y;
}

      



CustomDeserializer

public class CustomDeserializer implements JsonDeserializer<Data> {

    @Override
    public Data deserialize(final JsonElement json, final Type typeOfT, final JsonDeserializationContext context) throws JsonParseException {
        final JsonObject jsonObject = json.getAsJsonObject();

        final int this_number = jsonObject.get("this_number").getAsInt();
        final int that_number = jsonObject.get("that_number").getAsInt();
        final String some_string = jsonObject.get("some_string").getAsString();

        JsonObject list_of_objects =jsonObject.get("list_of_objects").getAsJsonObject();

        Set<Entry<String, JsonElement>> objects =  list_of_objects.entrySet();

        final Data data = new Data();
        List<DataInfo> list = new ArrayList<>();

        Gson gson = new Gson();

        for (Entry<String, JsonElement> entry : objects) {
            JsonElement jsonElement  = entry.getValue();
            DataInfo info = gson.fromJson(jsonElement,DataInfo.class);
            list.add(info);
        }

        data.setObjects(list);
        data.setSome_string(some_string);
        data.setThat_number(that_number);
        data.setThis_number(this_number);

        return data;
    }
}

      

+4


source


Just define

Map<String, Inner> list_of_objects;

      

in your outer class and let Gson do the job for you. It will deserialize beautifully with no effort. To make things clearer, I made a complete example based on your data. Just copy / paste / create / run this class. Your data structures are defined as static inner classes for my convenience, you can put them in separate files.



package stackoverflow.questions.q23472175;

import java.util.Map;

import com.google.gson.Gson;

public class Q23472175 {

    private static class Point {
        int x;
        int y;
        @Override
        public String toString() {
            return "Point [x=" + x + ", y=" + y + "]";
        }


    }

    private static class Inner {
        String random_double;
        String magic;
        int health;
        int price;
        Point point;
        @Override
        public String toString() {
            return "Inner [random_double=" + random_double + ", magic=" + magic + ", health=" + health + ", price=" + price + ", point=" + point + "]";
        }




    }

    private static class Outer {
        int this_number;
        int that_number;
        String some_string;
        Map<String, Inner> list_of_objects;
        @Override
        public String toString() {
            return "Outer [this_number=" + this_number + ", that_number=" + that_number + ", some_string=" + some_string + ", list_of_objects=" + list_of_objects + "]";
        }


    }

    public static void main(String[] args) {
        String json = "{"+
                "    \"this_number\": 1,"+
                "    \"that_number\": 12,"+
                "    \"some_string\": \"String!\","+
                "    \"list_of_objects\": {"+
                "        \"342356676784653234535345\": {"+
                "            \"random_double\": \"0.1235667456456\","+
                "            \"magic\": \"29\","+
                "            \"health\": 1,"+
                "            \"price\": 7,"+
                "            \"point\": {"+
                "                \"x\": 2,"+
                "                \"y\": 70"+
                "            }"+
                "        },"+
                "        \"2345263767467354\": {"+
                "            \"random_double\": \"0.1235667456456\","+
                "            \"magic\": \"23\","+
                "            \"health\": 1,"+
                "            \"price\": 9,"+
                "            \"point\": {"+
                "                \"x\": 0,"+
                "                \"y\": 70"+
                "            }"+
                "        }"+
                "    }"+
                "}";

        Gson g = new Gson();
        Outer object = g.fromJson(json, Outer.class);
        System.out.print(object);

    }

}

      

This is the result:

Outer [this_number=1, that_number=12, some_string=String!, list_of_objects={342356676784653234535345=Inner [random_double=0.1235667456456, magic=29, health=1, price=7, point=Point [x=2, y=70]], 2345263767467354=Inner [random_double=0.1235667456456, magic=23, health=1, price=9, point=Point [x=0, y=70]]}]

      

+2


source







All Articles