Java 中 JSONObject 的 accumulate() 方法的重要性?
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" ]}
广告