20

我在尝试使用 Gson 库反序列化 JSON 对象数组时遇到问题。

JSON数组的一个例子:

[
    {"ID":1,"Title":"Lion","Description":"bla bla","ImageURL":"http:\/\/localhost\/lion.jpg"},
    {"ID":1,"Title":"Tiger","Description":"bla bla","ImageURL":"http:\/\/localhost\/tiger.jpg"}
]

你怎么看?反序列化这种 JSON 响应的正确 Java 代码是什么?

4

1 回答 1

56

要反序列化 JSONArray,您需要使用 TypeToken。您可以从GSON 用户指南中了解更多信息。示例代码:

@Test
public void JSON() {
    Gson gson = new Gson();
    Type listType = new TypeToken<List<MyObject>>(){}.getType();
    // In this test code i just shove the JSON here as string.
    List<Asd> asd = gson.fromJson("[{'name':\"test1\"}, {'name':\"test2\"}]", listType);
}

如果你有一个 JSONArray 那么你可以使用

...
JSONArray jsonArray = ...
gson.fromJson(jsonArray.toString(), listType);
...
于 2012-04-24T06:32:33.950 回答