Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android中對JSONArray數組的指定項進行刪除和更新

Android中對JSONArray數組的指定項進行刪除和更新

編輯:Android開發教程

首先假設有這麼一個JSONArray

JSONArray Array1;

JSONArray ITEM = new JSONArray();

name為你獲取要刪除的字段名稱,IETM就是你刪除後得到的新的JSONArray數 組了

String name = null;
                try {
                         name = orderDish.getString("name");
                         JSONObject odItems = null;     
                          for(int j=0;j<Array1.length();j++)
                          {
                              odItems = (JSONObject)Array1.get(j);
                             if(name.equals(odItems.getString("name")))
                             {
                                Array1.put(j, null);
//                                 continue;
                             }
                             else
                             {
                                 newItems.put(odItems);
                             }
                          }
                        
                } catch (JSONException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

同理,替換就是直接把要替換的給put進去就行了。

查看本欄目更多精彩內容:http://www.bianceng.cn/OS/extra/

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved