JSONObject是名稱對和值對的無序集合。 JSONArray的一些重要方法是 accumulate()、put()、opt()、append()、write() 等。 accumulate() 方法累積鍵下的值,此方法類似於put() 方法,除非鍵下儲存現有對象,然後可以將JSONArray 儲存在鍵下保存所有累計值。如果存在現有的 JSONArray,則可以新增值。
public JSONObject accumulate(java.lang.String key, java.lang.Object value) throws JSONException
import org.json.*; public class JSONAccumulateMethodTest { public static void main(String[] args) throws JSONException { JSONObject jsonObj = new JSONObject(); jsonObj.accumulate("Technology", "Java"); jsonObj.accumulate("Technology", "Python"); jsonObj.accumulate("Technology", "Spark"); jsonObj.accumulate("Technology", "Selenium"); jsonObj.accumulate("Technology", ".Net"); System.out.println(jsonObj.toString(3)); } }
{"Technology": [ "Java", "Python", "Spark", "Selenium", ".Net" ]}
以上是在Java中,accumulate()方法的重要性是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!