JSON は軽量のデータ交換形式であり、JSON の形式は キーと値のペアです。 JSONObject は文字列内のテキストを解析して マップのようなオブジェクト を生成でき、java.util.Map インターフェイスをサポートします。 org.json.simple.JSONObject を使用して、Java で 2 つの JSON オブジェクトをマージできます。
以下のプログラムで putAll() メソッドを使用して、2 つの JSON オブジェクト (インターフェイス java.util.Map から継承) をマージできます。
例import java.util.Date; import org.json.simple.JSONObject; public class MergeJsonObjectsTest { public static void main(String[] args) { JSONObject jsonObj = new JSONObject(); // first json object jsonObj.put("Name", "Adithya"); jsonObj.put("Age", 25); jsonObj.put("Address", "Hitech City"); JSONObject jsonObj1 = new JSONObject(); // second json object jsonObj1.put("City", "Hyderabad"); jsonObj1.put("DOB", new Date(104, 3, 6)); jsonObj.putAll(jsonObj1); // merging of first and second json objects System.out.println(jsonObj); } }
{"Address":"Hitech City","DOB":Tue Apr 06 00:00:00 IST 2004,"City":"Hyderabad"," Age":25,"Name":"Adithya"}
以上がJava で 2 つの JSON オブジェクトをマージするにはどうすればよいでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。