Json Simple 简明教程

JSON.simple - Merging Objects

在 JSON.simple 中,我们可以轻松使用 JSONObject.putAll() 方法合并两个 JSON 对象。

以下示例说明了上述概念。

Example

import java.io.IOException;
import org.json.simple.JSONObject;

class JsonDemo {
   public static void main(String[] args) throws IOException {
      JSONObject obj1 = new JSONObject();
      obj1.put("name", "foo");
      obj1.put("num", new Integer(100));

      JSONObject obj2 = new JSONObject();
      obj2.put("balance", new Double(1000.21));
      obj2.put("is_vip", new Boolean(true));
      obj1.putAll(obj2);
      System.out.println(obj1);
   }
}

Output

{"balance":1000.21,"is_vip":true,"num":100,"name":"foo"}