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