2015-06-15 66 views
0

json文件顯示在arraylist上,我想從json文件中顯示arraylist中的所有名字。所有的名字都沒有從arraylist中獲取

try {      
    JSONArray root = new JSONArray(json); 

    for (int i = 0; i < root.length(); i++) 
    { 
     JSONObject att = (JSONObject) root.getJSONObject(i); 
     name = att.getString("nm"); 
     list.add(name); 

    } 
    for(int i = 0; i<root.length(); i++){ 
     Log.i("name", name); 
    } 
}catch (JSONException e) { 
    e.printStackTrace(); 
} 

回答

1
try{ 
    JSONArray root = new JSONArray(json); 
    for (int i = 0; i < root.length(); i++){ 
     JSONObject att = (JSONObject) root.getJSONObject(i); 
     name = att.getString("nm"); 
     list.add(name); 
    } 
    for(int j = 0; j<feedList.size(); j++){ 
     Log.i("name",feedList.get(j));   
    } 
}catch (JSONException e) { 
    e.printStackTrace(); 
} 
相關問題