JSONest un format d'échange de données léger. Le format de JSON estpaires clé-valeur.JSONObject peut analyser le texte d'une chaîne pour générer desobjets de type carteet prend en charge l'interfacejava.util.Map. Nous pouvons fusionner deux objets JSON en Java en utilisantorg.json.simple.JSONObject.
Nous pouvons fusionner deux objets JSON en utilisant la méthodeputAll() dans le programme ci-dessous (hérité de l'interfacejava.util.Map).
Exempleimport 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"}
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!