0

我得到这样的json响应

{“内容”:“”,“面包屑”:“”,“副标题”:“”,“作者”:“”,“标题”:“fas”,“absolute_url”:“http://abrilemlondres.com。 br/599/voce-em-londres/fas", "commentsEnabled": false, "releaseDateTime": 1335524514, "image": ["http://abrilemlondres.com.br/m/up/40/00/553 .jpg"], "标签": "ff"}

以及如何从此响应中获取图像值......

4

1 回答 1

2

下面的代码片段为您提供了所需的值。

String jsonExample = "{\"content\": \"\", \"breadcrumb\": \"\", \"subtitle\": \"\",                \"author\": \"\", \"title\": \"fas\", \"absolute_url\": \"http://abrilemlondres.com.br/599/voce-em-londres/fas\", \"commentsEnabled\": false, \"releaseDateTime\": 1335524514, \"image\": [\"http://abrilemlondres.com.br/m/up/40/00/553.jpg\"], \"tags\": \"ff\"}";

JSONObject jsonobject = new JSONObject(jsonExample);

JSONArray array = jsonobject.getJSONArray("image");

System.out.println("$$$$$$$$$      "+array.getString(0)+"&&&&&&&&     " );
于 2012-04-27T15:49:36.283 回答