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

android Json 解析 JSONObject JSONArray

时间:2015-06-02 11:18:03      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:android   string   json   

android Json 解析  JSONObject JSONArray

我只解析了一个,不管有多少个都以此方法类推,加上http://blog.csdn.net/menglele1314/article/details/46324069里的JSONArray解析,可以应付一般所以的开发了

try {

            String value = "{\"result\":\"S\", \"address\":[{\"shengfen\":\"上海\"},{\"shengfen\":\"北京\"},{\"shengfen\":\"深圳\"}]}";


            JSONObject jsonObject = new JSONObject(value);

            String result = jsonObject.getString("result");


            StringBuffer sb = new StringBuffer();

            sb.append(result+"\n");


            JSONArray array = jsonObject.getJSONArray("address");

         
            if (array != null && array.length() != 0) {

                for (int i = 0; i < array.length(); i++) {


                    JSONObject jsonObject1 = array.getJSONObject(i);
                    String shengfen = jsonObject1.getString("shengfen");

                    sb.append(shengfen+"\n");


                }

            }


            textView.setText(sb.toString());


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

android Json 解析 JSONObject JSONArray

标签:android   string   json   

原文地址:http://blog.csdn.net/menglele1314/article/details/46324543

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