使用Gson将复杂的Java对象转换为Json

时间:2014-03-16 16:39:44

标签: java json gson

我正在使用GSON来序列化Java对象。

我有一个包含以下属性的Java类。

String property1;
Map<String, HashMap> property2 = new HashMap<>();
Map<String, ArrayList<String>> property3 = new HashMap<>();
Map<String, String[]> property4 = new HashMap<>();

我想将此转换为Json。由于里面有HashMaps的地图,因此变得困难。我知道我可以通过gsonObject.toJson(map)获得Json的地图。但我希望Json对象中的所有这些属性。 (一体化。不连接多个对象)

任何人都可以帮我完成这项工作吗?

1 个答案:

答案 0 :(得分:1)

我看不出问题所在。 Gson可以序列化Map就好了。

假设您的班级名为Test

Test test = new Test();

test.property1 = "some value";

HashMap<String, Integer> map = new HashMap<>();
map.put("one", 1);
map.put("fourty two", 42);
test.property2.put("property2-key", map);

ArrayList<String> strings = new ArrayList<>(Arrays.asList("string1",
            "string2", "string3"));
test.property3.put("property3-key", strings);

String[] stringArray = { "array1", "array2", "array3" };
test.property4.put("property4-key", stringArray);

Gson gson = new Gson();
String json = gson.toJson(test);
System.out.println(json);

它会生成以下内容

{
    "property1": "some value",
    "property2": {
        "property2-key": {
            "fourty two": 42,
            "one": 1
        }
    },
    "property3": {
        "property3-key": [
            "string1",
            "string2",
            "string3"
        ]
    },
    "property4": {
        "property4-key": [
            "array1",
            "array2",
            "array3"
        ]
    }
}