我正在接受这样的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”}
以及如何从此响应中获取图像值......
答案 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)+"&&&&&&&& " );