码迷,mamicode.com
首页 > 移动开发 > 详细

android解析二维数组对象key:value

时间:2015-05-21 19:47:36      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:android解析二维数组对象key:value

                JSONArray jsonArray = jsonObject.optJSONArray("data");

                // 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,);

                }

                }



一维数组解析


        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/Linux@HeFei” 博客,请务必保留此出处http://liang3391.blog.51cto.com/178205/1653546

android解析二维数组对象key:value

标签:android解析二维数组对象key:value

原文地址:http://liang3391.blog.51cto.com/178205/1653546

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!