2016-10-20 5 views
-1

JSONのURLから取得した値、REGD:私は、私が試した何</p> <p><a href="http://rest-service.guides.spring.io/greeting" rel="nofollow">http://rest-service.guides.spring.io/greeting</a>のid^&コンテンツ値を取得したい

try { 
     JSONObject jsonObj = new JSONObject(parsingUrl); 

     // If you have array 
     JSONArray resultArray = jsonObj.getJSONArray("id"); // Here you will get the Array 

     // Iterate the loop 
     for (int i = 0; i < resultArray.length(); i++) { 
      // get value with the NODE key 
      JSONObject obj = resultArray.getJSONObject(i); 
      String name = obj.getString("content"); 
     } 

     // If you have object 
     //String result1 = jsonObj.getString("result"); 

    } catch (Exception e) { 
     e.printStackTrace(); 
    } 

おかげ

答えて

0

あなたの言及いけないが、持っているURL json配列は、構文解析のようになります

try { 
     JSONObject jsonObj = new JSONObject(resultfromUrl); 

     int id = jsonObj.getInt("id"); 
     String name = jsonObj.getString("content"); 
    } catch (JSONException e) { 
     e.printStackTrace(); 
    } 
+0

上記のコードuで述べたテストできます。それは値を設定していません – User

+0

どうやってリクエストしていますか?私はあなたがAsyncTaskについてもっと学ぶ必要があると思います... – kcg

+0

今私はmakine requestではありません。oncreate.Isで次のコードを追加していますAsynchTaskなしではできません – User

関連する問題

 関連する問題