第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

將多個(gè)字符串json合并到一個(gè)java中

將多個(gè)字符串json合并到一個(gè)java中

12345678_0001 2023-10-19 21:31:40
我有多個(gè) json 字符串,例如:JSON 1:{"a":"test1","b":"test2"}JSON 2:{"b":"test3","c":"test4"}我想要最終的 json 為:{"a":"test1","b":["test2","test3"],"c":"test4"}我怎樣才能在java中做到這一點(diǎn)?
查看完整描述

3 回答

?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以使用任何一種最流行的 JSON 庫(kù)來(lái)實(shí)現(xiàn)這一目標(biāo),以下示例演示了如何將多個(gè) JSON 字符串合并為一個(gè)Jackson。


我使用Map<String, Object>(如jsonMap)作為合并的 JSON 字符串。如果所有給定 JSON 字符串中的鍵都相同,則jsonMap中的值將為String。否則,其值為L(zhǎng)ist<String>。


示例代碼


List<String> jsonStrList = Arrays.asList("{\"a\":\"test1\",\"b\":\"test2\"}","{\"b\":\"test3\",\"c\":\"test4\"}");


ObjectMapper mapper = new ObjectMapper();

Map<String, Object> jsonMap = new HashMap<>();

for (String jsonStr : jsonStrList) {

    Map<String, String> jsonContent = mapper.readValue(jsonStr, Map.class);

    jsonContent.forEach((k,v) -> {

        if (jsonMap.containsKey(k)) {

            if (jsonMap.get(k) instanceof String) {

                List<String> content = new ArrayList<>();

                content.add(jsonMap.get(k).toString());

                content.add(v);

                jsonMap.put(k, content);

            } else {

                jsonMap.put(k, ((ArrayList) jsonMap.get(k)).add(v));

            }

        } else {

            jsonMap.put(k, v);

        }

    });

}

System.out.println(jsonMap.toString());

System.out.println(new ObjectMapper().writeValueAsString(jsonMap).toString());

控制臺(tái)輸出


{a=test1, b=[test2], c=test4}

{"a":"test1","b":["test2","test3"],"c":"test4"}


查看完整回答
反對(duì) 回復(fù) 2023-10-19
?
Qyouu

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超11個(gè)贊

您需要一個(gè) API 或框架來(lái)在 java 中解析 JSON。然后,您必須迭代 JSON 字符串,將它們解析為鍵值對(duì)。一旦你有了它,我建議使用 Map 來(lái)按鍵存儲(chǔ)它們。這是一些偽代碼:


public class KeyValuePair {

    private String key = null;

    private String value = null;

    // todo create constructor with arguments

    // todo create getters and setters

}


private List<KeyValuePair> parseJSON(String json) {

    List<KeyValuePair> parsed = new ArrayList<>();

    // todo use the JSON API you chose to parse the json string into an ArrayList of KeyValuePair

    return parsed;

}


Map<String, List<String>> results = new HashMap<>();

List<String> jsonStrings = new ArrayList<>();

// todo read your JSON strings into jsonStrings

for (String jsonString : jsonStrings) {

    List<KeyValuePair> pairs = parseJSON(jsonString);

    for (KeyValuePair pair : pairs) {

        List<String> values = results.get(pair.getKey());

        if (values == null) {

            values = new ArrayList<>();

            results.put(pair.getKey(), values);

        }

        values.add(pair.getValue());

    }

}

// todo you'll have to loop through the map's keys and construct your result JSON


查看完整回答
反對(duì) 回復(fù) 2023-10-19
?
慕少森

TA貢獻(xiàn)2019條經(jīng)驗(yàn) 獲得超9個(gè)贊

您可以使用JSONObject 類來(lái)執(zhí)行您需要的操作。據(jù)我了解,您目前有一些字符串。您可以使用構(gòu)造函數(shù)為每個(gè)字符串創(chuàng)建一個(gè) JSONObject:

JSONObject?jObject?=?new?JSONObject(String?str);

然后,您可以迭代 JSONObject,執(zhí)行所有檢查并在新 JSONObject 中構(gòu)造新 JSON。您有一些非常好的方法對(duì)您非常有幫助,但我認(rèn)為 get 和 put 方法足以實(shí)現(xiàn)此合并。


查看完整回答
反對(duì) 回復(fù) 2023-10-19
  • 3 回答
  • 0 關(guān)注
  • 578 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)