0
{
    "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
}

我正在使用 Google GSon,但并没有真正到达任何地方。

首先,我很困惑为什么我不能将它转换为 JsonArray。“列表”看起来像一个 json 数组。但它似乎不起作用。我不介意使用 POJO 方法来做这件事,但我如何首先解析这个 JSONArray?

  JsonParser parser = new JsonParser();
    JsonElement tradeElement = parser.parse(response);
    JsonObject trade = tradeElement.getAsJsonObject();
    json.get("list").getAsJsonObject().get("url")

那给了我null。

4

2 回答 2

1
 {
   "complete":1,
   "list":{
      "217345740":{
         "item_id":"217345740",
         "state":"0",
         "time_added":"1346790700",
         "time_updated":"1346790837",
         "title":"",
         "url":"http://t.co/dCvNwtrK"
      },
      "218888771":{
         "item_id":"218888771",
         "state":"0",
         "time_added":"1347094862",
         "time_updated":"1347094862",
         "title":"twitter",
         "url":"http://t.co/oFYGY7z0"
      }
   },
   "since":1347094862,
   "status":1
}

正如您所看到的,当这是一个格式正确list的对象时,它具有两个属性217345740218888771. 数组用括号括起来[]。这就是为什么您无法将其转换为数组的原因。

您最好的选择是正确使用 gson 及其将 json 解析为 POJO 的能力。这是完全未经测试的(我不太了解 Gson,而且我不在我的开发机器上),但你会看到这个想法。

public class Item {
    long item_id;
    int state;
    @SerializedName("time_added")
    Date timeAdded;
    @SerializedName("time_updated")
    Date timeUpdated;
    String title;
    String url;

    // getter & setters
}

public class Trade {
    int complete;
    Date since;
    int status;
    Map<Long, Item> list;

    // getter & setters
}

public class Foo {
    public static void main(String[] args) {
        String json = "";

        GsonBuilder builder = new GsonBuilder();
        builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() {
            public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
                return new Date(json.getAsJsonPrimitive().getAsLong()); 
            } 
        });
        Gson gson = builder.create();
        Trade trade = gson.fromJson(json, Trade.class);
        Map<Long, Item> items = trade.getList();
        System.out.println(items.get(217345740L).getUrl()); // should print http://t.co/dCvNwtrK
    }
}
于 2012-09-08T19:00:40.307 回答
0

JSON 数组如下所示:

[
    {
        "item_id":"218888771",
        "title":"twitter",
        "url":"http:\/\/t.co\/oFYGY7z0",
        "time_updated":"1347094862",
        "time_added":"1347094862",
        "state":"0"
    },
    {
        "item_id":"218888771",
        "title":"twitter",
        "url":"http:\/\/t.co\/oFYGY7z0",
        "time_updated":"1347094862",
        "time_added":"1347094862",
        "state":"0"
    },
]

上面的一个是地图的 JSONArray。由于您的数据是地图的地图,因此您应该使用适当的键浏览地图并到达具有“url”键的最里面的地图。

于 2012-09-08T19:02:14.137 回答