java – 如何使用Gson反序列化JSON数组

前端之家收集整理的这篇文章主要介绍了java – 如何使用Gson反序列化JSON数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用Gson反序列化一个 JSON数组.我试图这样做,但我不能这样做.

JSON数组:

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

我从PHP脚本获取JSON数组:

$array = array (
    array ( 'ID' => 1,'Title' => 'Lion','Description' => 'bla bla','ImageURL' => 'http:\/\/localhost\/lion.jpg' ),array ( 'ID' => 2,'Title' => 'Tiger','ImageURL' => 'http:\/\/localhost\/tiger.jpg' ),);
echo json_encode ($array);

解决方法

要反序列化JSONArray,您需要使用TypeToken.您可以从 GSON user guide阅读更多信息.示例代码
@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);
...
原文链接:https://www.f2er.com/java/126326.html

猜你在找的Java相关文章