Maison >Java >javaDidacticiel >Comment fusionner deux objets JSON en Java ?
JSON est un format d'échange de données léger. Le format de JSON est paires clé-valeur. JSONObject peut analyser le texte d'une chaîne pour générer des objets de type carte et prend en charge l'interface java.util.Map. Nous pouvons fusionner deux objets JSON en Java en utilisant org.json.simple.JSONObject.
Nous pouvons fusionner deux objets JSON en utilisant la méthode putAll() dans le programme ci-dessous (hérité de l'interface java.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!