标签:style class blog code color get
解析json数组
JSONArray jsonArray = new JSONArray(markingStr); int iSize = jsonArray.length(); for (int i = 0; i < iSize; i++) { org.json.JSONObject jsonObj = jsonArray.getJSONObject(i); String questionsId= jsonObj.get("questionsId").toString().trim(); String haveScore= jsonObj.get("haveScore").toString().trim(); }
标签:style class blog code color get
原文地址:http://www.cnblogs.com/libaoting/p/json.html