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

移除指定位置的jsonarray

时间:2016-01-23 10:24:37      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

    public static JSONArray remove(int index,JSONArray jsonArray) {

        JSONArray mJsonArray = new JSONArray();

        if (index < 0){
            return mJsonArray;
        }
            
        if (index > jsonArray.length()){
            return mJsonArray;

        }
            
        for (int i = 0; i < index; i++) {
            try {
                mJsonArray.put(jsonArray.getJSONObject(i));
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }

        for (int i = index + 1; i < jsonArray.length(); i++) {
            try {
                mJsonArray.put(jsonArray.getJSONObject(i));
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
        return mJsonArray;

    }

 

移除指定位置的jsonarray

标签:

原文地址:http://www.cnblogs.com/84126858jmz/p/5152816.html

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