17

结合(合并)两个的最佳方法是什么JSONObjects

JSONObject o1 = {
    "one": "1",
    "two": "2",
    "three": "3"
}
JSONObject o2 = {
        "four": "4",
        "five": "5",
        "six": "6"
    }

和结合的结果o1必须o2

JSONObject result = {
        "one": "1",
        "two": "2",
        "three": "3",
        "four": "4",
        "five": "5",
        "six": "6"
    }
4

5 回答 5

14

我有同样的问题:我找不到方法(官方参考页面putAll中没有列出)。

所以,我不知道这是否是最好的解决方案,但肯定效果很好:

//I assume that your two JSONObjects are o1 and o2
JSONObject mergedObj = new JSONObject();

Iterator i1 = o1.keys();
Iterator i2 = o2.keys();
String tmp_key;
while(i1.hasNext()) {
    tmp_key = (String) i1.next();
    mergedObj.put(tmp_key, o1.get(tmp_key));
}
while(i2.hasNext()) {
    tmp_key = (String) i2.next();
    mergedObj.put(tmp_key, o2.get(tmp_key));
}

现在,合并的 JSONObject 存储在mergedObj

于 2013-10-24T16:05:04.417 回答
3

要像这样合并到新的 json 对象中的 json 对象。

    JSONObject jObj = new JSONObject();
    jObj.put("one", "1");
    jObj.put("two", "2");
    JSONObject jObj2 = new JSONObject();
    jObj2.put("three", "3");
    jObj2.put("four", "4");


    JSONParser p = new JSONParser();
    net.minidev.json.JSONObject o1 = (net.minidev.json.JSONObject) p
                        .parse(jObj.toString());
    net.minidev.json.JSONObject o2 = (net.minidev.json.JSONObject) p
                        .parse(jObj2.toString());

    o1.merge(o2);

    Log.print(o1.toJSONString());

现在 o1 将是合并的 json 对象。你会得到这样的输出::

{"three":"3","two":"2","four":"4","one":"1"}

请参考此链接并下载 smartjson 库..这里是链接http://code.google.com/p/json-smart/wiki/MergeSample

希望它会有所帮助。

于 2013-10-24T12:46:22.997 回答
0

这个怎么样:

            Iterator iterator = json2.keys();
            while(iterator.hasNext()){
                String key = iterator.next().toString();
                json1.put(key,map.optJSONObject(key));
            }
于 2017-06-21T08:10:02.707 回答
0

合并 JsonObject(gson)-

JsonObject data = new JsonObject();
data = receivedJsoData.get("details").getAsJsonObject();

JsonObject data2 = new JsonObject();
data2 = receivedJsoData1.get("details").getAsJsonObject();

JsonObject mergedData = new JsonObject();

Set<Map.Entry<String, JsonElement>> entries = data1.entrySet();  //will return members of your object
for (Map.Entry<String, JsonElement> entry : entries) {
    mergedData.add(entry.getKey(), entry.getValue());
}
Set<Map.Entry<String, JsonElement>> entries1 = data2.entrySet();  //will return members of your object
for (Map.Entry<String, JsonElement> entry : entries1) {
    mergedData.add(entry.getKey(), entry.getValue());
}
于 2019-06-27T14:52:55.207 回答
-1

试试这个..希望它有帮助

JSONObject result = new JSONObject();
result.putAll(o1);
result.putAll(O2);
于 2013-10-24T12:49:40.270 回答