如何从json响应中获取json数组值

时间:2012-04-27 15:29:43

标签: android json

我正在接受这样的json回复

  

{“content”:“”,“breadcrumb”:“”,“副标题”:“”,“作者”:“”,   “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”}

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

1 个答案:

答案 0 :(得分: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)+"&&&&&&&&     " );