兩個json合成一個
阿新 • • 發佈:2019-01-24
import net.sf.json.JSONObject; public class JSONCombine { public static void main(String[] args) { JSONObject jsonOne = new JSONObject(); JSONObject jsonTwo = new JSONObject(); jsonOne.put("name", "kewen"); jsonOne.put("age", "24"); jsonTwo.put("hobbit", "Dota"); jsonTwo.put("hobbit2", "wow"); JSONObject jsonThree = new JSONObject(); jsonThree.putAll(jsonOne); jsonThree.putAll(jsonTwo); System.out.println(jsonThree.toString()); } }