使用谷歌json解析Json响应

时间:2011-07-02 06:31:00

标签: java json wordpress gson

我正在使用wordpress json-api插件,想要调用get_date_index。函数的json响应采用以下格式。

{
"status": "ok",
"permalinks": [
 "...",
"...",
"..."
],
"tree": {
"2009": {
  "09": 17,
  "10": 20,
  "11": 7
},
"2010":{
 }
}

注意:树由response.tree。[year]。[month]。[帖子数]安排。

如何使用java Parcelable对象解析此响应?我正在使用谷歌json解析响应。我无法理解如何编写用于树响应的java对象。

1 个答案:

答案 0 :(得分:0)

如果你的意思是google-gson,那么文档会说明这一点:

 Gson gson = new Gson(); // Or use new GsonBuilder().create();
 MyType target = new MyType();
 MyType target2 = gson.fromJson(json, MyType.class); // deserializes json into target2

json将是字符串responseText。