編輯: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/
RoboGuice最近推出了2.0版本。和1.1相比具有:提高了穩定性支持Fragment更簡潔易用但由於RoboGuice2 不完全向下兼容RoboGuice1.1,因
在前面的例子中,我們忽略了一個重要的原則,在代碼和Layout中,直接使用了字符串常量,比如:<Button android:text=”Pattern
承接了上一篇文章中關於環境搭建的簡單示例,這一篇我會詳細講解FirstGame和HelloGameActivity類中 的代碼。一、ApplicationListener
除了fragments(碎片),在Android3和4中新增加的特性,還有ActionBar(活動欄)。ActionBar位於傳 統標題欄的位置,就在設備屏幕的頂部。Ac