JSONArray jsonArray = jsonObject.optJSONArray("data");
創(chuàng)新互聯(lián)建站專注于淄博企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,成都商城網(wǎng)站開發(fā)。淄博網(wǎng)站建設(shè)公司,為淄博等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
// array = dataObj.getJSONArray("data");
//JSONArray array = dataObj.getJSONArray("result");
if (jsonArray != null && jsonArray.length() > 0) {
for (int i = 0;i <= jsonArray.length() - 1; i++) {
JSONObject obj = jsonArray.getJSONObject(i);
String key = obj.optString("materialId");
String value = obj.optString("materialName");
//System.out.println("key:"+key);
System.out.println("values:"+value);
MaintainType type = new MaintainType();
type.setId(key);
type.setType(value);
types.add(type);
System.out.println(types);
//Logger.d(TAG,);
}
}
一維數(shù)組解析
try {
JSONObject jsonObject = new JSONObject(result);
if (jsonObject != null) {
status = jsonObject.optBoolean("status");
if (!status) {
msg = jsonObject.optString("msg");
return;
}
JSONObject dataObj = jsonObject.optJSONObject("data");
JSONArray array = dataObj.names();
if(array != null && array.length() > 0){
for (int i = 0; i < array.length(); i++) {
String key = array.getString(i);
String value = dataObj.optString(key);
BudgetType type = new BudgetType();
type.setId(key);
type.setType(value);
types.add(type);
}
}
}
} catch (JSONException e) {
e.printStackTrace();
}
本文題目:android解析二維數(shù)組對象key:value
本文來源:http://aaarwkj.com/article18/ipdjgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、品牌網(wǎng)站建設(shè)、面包屑導(dǎo)航、Google、網(wǎng)站改版、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)