Java 中 JSONObject 的 accumulate() 方法的重要性?

javajsonobject oriented programmingprogramming

JSONObject name value  对的无序集合。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"
]}

相关文章