JSON(JavaScript Object Notation)是一種輕量級的數據交換文件格式。Java中通過使用JSON庫,可以在程序中處理JSON對象。下面我們來介紹如何在Java中添加JSON節點。
//添加一個簡單的JSON節點 JSONObject jsonObject = new JSONObject(); jsonObject.put("name", "Tom");//添加一個鍵值對 //添加一個嵌套的JSON節點 JSONObject jsonObject = new JSONObject(); JSONObject addressJsonObject = new JSONObject(); addressJsonObject.put("city", "Beijing"); addressJsonObject.put("street", "Wudaokou"); jsonObject.put("name", "Tom"); jsonObject.put("age", 18); jsonObject.put("address", addressJsonObject); //在數組中添加節點 JSONObject jsonObject = new JSONObject(); JSONArray jsonArray = new JSONArray(); jsonArray.put("apple"); jsonArray.put("banana"); jsonArray.put("orange"); jsonObject.put("fruits", jsonArray); //在嵌套的JSONArray中添加節點 JSONArray jsonArray = new JSONArray(); JSONArray fruitArray = new JSONArray(); fruitArray.put("apple"); fruitArray.put("banana"); fruitArray.put("orange"); jsonArray.put(fruitArray); //在JSON數組中添加元素 JSONArray jsonArray = new JSONArray(); jsonArray.put("apple"); jsonArray.put("banana"); jsonArray.put(1, "orange");//在索引為1的位置添加元素
通過以上幾種方式,可以在Java程序中方便地添加JSON節點。當然,在實際中的使用中,我們還可以靈活的根據需求添加更為復雜的JSON節點。
上一篇html電子郵箱表單代碼
下一篇VUE提交多條表單