2013-02-06 22 views
5

Sto avendo difficoltà a capire come faccio scorrere l'oggetto JSON sottoLoop attraverso un oggetto JSON in Java

[ 
    {"course_slug":"course-4504","course_description":"A principle refers to a fundamental truth. It establishes cause and effect relationship between t...","course_name":"Principles of Management","course_thumb":"http:\/\/i1117.photobucket.com\/albums\/k594\/thetutlage\/principles_of-management.jpg?t=1359623785"}, 
    {"course_slug":"course-4502","course_description":"Management accounting or managerial accounting is concerned with the provisions and use of accoun...","course_name":"Management Accounting","course_thumb":"http:\/\/i1117.photobucket.com\/albums\/k594\/thetutlage\/management_Accounting.jpg?t=1359623495"}, 
    {"course_slug":"course-4503","course_description":"Quantitative Techniques","course_name":"Quantitative Techniques","course_thumb":""} 
] 

risposta

14

è possibile scorrere stringa JSON corrente come:

JSONArray jsonarr = new JSONArray("your json String"); 


    for(int i = 0; i < jsonarr.length(); i++){ 

    JSONObject jsonobj = jsonarr.getJSONObject(i); 

    // get course_slug 
    String str_course_slug=jsonobj.getString("course_slug"); 
    // get course_description 
    String str_course_description=jsonobj.getString("course_description"); 
    //... for other elements 
    } 
+0

Sembra funzionare –

+0

@AmanVirk: è necessario ArrayList o HaspMap per archiviare il risultato dell'analisi e utilizzarlo nell'intera applicazione –

1
String data = "[ 
{ 
    "course_slug": "course-4504", 
    "course_description": "A principle refers to a fundamental truth. It establishes cause and effect relationship between t...", 
    "course_name": "Principles of Management", 
    "course_thumb": "http://i1117.photobucket.com/albums/k594/thetutlage/principles_of-management.jpg?t=1359623785" 
}, 
{ 
    "course_slug": "course-4502", 
    "course_description": "Management accounting or managerial accounting is concerned with the provisions and use of accoun...", 
    "course_name": "Management Accounting", 
    "course_thumb": "http://i1117.photobucket.com/albums/k594/thetutlage/management_Accounting.jpg?t=1359623495" 
}, 
{ 
    "course_slug": "course-4503", 
    "course_description": "Quantitative Techniques", 
    "course_name": "Quantitative Techniques", 
    "course_thumb": "" 
} 
]"; 

JSONArray jArray = new JSONArray(data); 

int n = jArray.length; 

for(int i = 0; i < n; i++){ 

JSONObject jObj = jArray.getJSONObject(i); 
} 
1

Prova questo,

String data = "[ 
     {"course_slug":"course-4504","course_description":"A principle refers to a fundamental truth. It establishes cause and effect relationship between t...","course_name":"Principles of Management","course_thumb":"http:\/\/i1117.photobucket.com\/albums\/k594\/thetutlage\/principles_of-management.jpg?t=1359623785"}, 
     {"course_slug":"course-4502","course_description":"Management accounting or managerial accounting is concerned with the provisions and use of accoun...","course_name":"Management Accounting","course_thumb":"http:\/\/i1117.photobucket.com\/albums\/k594\/thetutlage\/management_Accounting.jpg?t=1359623495"}, 
     {"course_slug":"course-4503","course_description":"Quantitative Techniques","course_name":"Quantitative Techniques","course_thumb":""} 
    ]"; 

JSONArray jArray = new JSONArray(data); 
    for(int i = 0; i < jArray.length(); i++){ 
String str = jarray.getJSONObject(i).getString("course_slug"); 


    } 
1

La staffa Piazza repr esents JsonArray. Il riccio rappresenta JsonObjects. Quindi nel tuo esempio, hai un JsonArray con 3 JsonObjects.

Let "jsonArrayCourse" è il vostro JsonArray, poi

 for (int i = 0; i < jsonArrayCourse.length(); i++) { 
      JSONObject c = jsonArrayCourse.getJSONObject(i); 
          String course_slugText = c.getString("course_slug"); 
          String course_descriptionText = 
               c.getString("course_description"); 
          String course_nameText = c.getString("course_name"); 
          String course_thumbURL = c.getString("course_thumb"); 
                  } 

Inoltre non dimenticate di provare prendere il course_thumpURL nel caso in cui esso non ha alcun valore.