JSON代码:http://headytunes.co/?json=1
我试图提取作者姓名,但只重复JSON列表中的第一位作者。我也试图拉出缩略图和来自这个JSON的多个类别,但是我无法正确地拉出图像或标签。
HttpEntity entity = response.getEntity();
String data = EntityUtils.toString(entity);
Actors actor = new Actors();
JSONObject jsono = new JSONObject(data);
JSONArray jarray = jsono.getJSONArray("posts");
JSONObject jsonoTwo =jsono.getJSONArray("posts").getJSONObject(0).getJSONObject("author");
for (int i = 0; i < jarray.length(); i++) {
JSONObject object = jarray.getJSONObject(i);
actor = new Actors();
actor.setName(object.getString("title"));
actor.setDescription(object.getString("excerpt"));
actor.setDate(object.getString("date"));
actor.setAuthor(jsonoTwo.getString("name"));
//.setTags(jsonoThree.getString("title"));
//actor.setImage(images.getString("url"));
songList.add(actor);
答案 0 :(得分:1)
您只是重复获取第一个作者姓名,因为这就是您在代码中所做的事情。
您目前有:
JSONObject jsonoTwo = jsono.getJSONArray(“posts”)。 getJSONObject(0) .getJSONObject(“author”);
。
actor.setAuthor(jsonoTwo.getString( “名称”));
上面的粗体部分是说抓住第一篇文章的数据然后抓住作者。
更新您的代码,使其如下所示:
actor.setAuthor(object.getJSONObject("author").getString("name"));
答案 1 :(得分:1)
我希望它没有任何拼写错误:
for (int i = 0; i < jarray.length(); i++) {
JSONObject object = jarray.getJSONObject(i);
actor = new Actors();
actor.setName(object.getString("title"));
actor.setDescription(object.getString("excerpt"));
actor.setDate(object.getString("date"));
actor.setAuthor(object.getString("name"));
JSONArray tags = object.getJSONArray("tag");
for (int j = 0; j < tags.length(); j++) {
// you can access each tag in this section
}
JSONArray attachment = object.getJSONArray("attachment");
for (int k = 0; k < tags.length(); k++) {
// you can access inside attachment
JSONObject insideAttachmentObj = attachment.getJSONObject(k);
insideAttachmentObj.getJSONObject("images").getJSONObject("thumbnail");
//or for accessing url :insideAttachmentObj.getJSONObject("images").getJSONObject("thumbnail").getString("url");
}
songList.add(actor);
答案 2 :(得分:1)
您可以通过查看使用Gson从原始JSON创建模型类来简化整个过程。
要创建模型类,只需使用与返回的JSON中相同名称的属性,然后将JSON解析为类似的模型列表:
//Example model class
public Class Actor{
String name;
}
....
//Where you are parsing JSON
public void parseJSON(String json){
List<Actor> actors= Arrays.toList(new Gson().fromJson(json, Actor[].class));
//Use the actor object
}