{
"status":1,
"list":
{
"218888771":
{
"item_id":"218888771",
"title":"twitter",
"url":"http:\/\/t.co\/oFYGY7z0",
"time_updated":"1347094862",
"time_added":"1347094862",
"state":"0"
},
"217345740":
{
"item_id":"217345740",
"title":"",
"url":"http:\/\/t.co\/dCvNwtrK",
"time_updated":"1346790837",
"time_added":"1346790700",
"state":"0"
}
},
"since":1347094862,
"complete":1
}
我使用谷歌GSon,但沒有真正得到任何地方。無法解析此使用谷歌Gson在java
首先我很困惑,爲什麼我不能把它當作JsonArray。 「list」看起來像一個json數組。但它似乎並不奏效。我不介意使用POJO方法來做這件事,但我該如何解析這個JSONArray呢?
JsonParser parser = new JsonParser();
JsonElement tradeElement = parser.parse(response);
JsonObject trade = tradeElement.getAsJsonObject();
json.get("list").getAsJsonObject().get("url")
這給了我空。
我到底該如何解析呢? – Hick
@Puck見我的編輯 – Alex