Android Json解析邮递员URL

时间:2016-12-29 14:12:31

标签: json parsing android-studio

我是json的初学者, 我找不到任何教程,显示从网址解析json并在列表视图中显示,

我想从url解析这个json,就像它显示在下面

enter image description here

1 个答案:

答案 0 :(得分:0)

try {
 JSONObject jsonObj = new JSONObject(response);

 // Getting JSON Array node
 JSONArray data = jsonObj.getJSONArray("results");

// looping through All Data
   for (int i = 0; i <data.length(); i++) {
   JSONObject c = data.getJSONObject(i);

    String id = c.getString("id");
    String name = c.getString("name");
    String email = c.getString("ordering");
    String address = c.getString("images");

}

catch(Exception e)
{
  //Json exception here
}