android JSONArray JSONObject 字符串轉json數組 遍歷json對象


String json = "{''data'':[{''name'':''Wallace''},{''name'':''Grommit''}]}";   
StringBuffer  marketXml = new StringBuffer();
 
 
 jsonObjSplit = new JSONObject(json );
      JSONArray ja = jsonObjSplit.getJSONArray("data'");
      for (int i = 0; i < ja.length(); i++) {
            JSONObject jo = (JSONObject) ja.get(i);
   

           marketXml.append(jo.get(''name'"));
           System.out.println(marketXml.toString());
     }
-------------------------------------------------------------------------遍歷json 對象
 
    jsonObj = new JSONObject(activeMarketRet);
    
    for (Iterator iter = jsonObj.keys(); iter.hasNext();) { //先遍歷整個 people 對象
        String key = (String)iter.next();
        System.out.println(jsonObj .getString(Key));
   }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM