gpt4 book ai didi

java - Java 上带有 MultiValueMap 的 JSON

转载 作者:行者123 更新时间:2023-12-05 07:42:00 25 4
gpt4 key购买 nike

我想像这样构建一个 JSON:

{
"Id": "33396",
"Actions": [
{
"Key": "5",
"Value": "Test"
},
{
"Key": "6",
"Value": "Test 2"
}
]
}

我正在使用 MultiValueMap,这是我的代码:

MultiValueMap<String, Object> map = new LinkedMultiValueMap<String, Object>();

map.add("Id","33396");

我不知道如何在我的代码中实现 Action 列表

我这样做了,但我认为这是重复的

MultiValueMap map = new LinkedMultiValueMap();MultiValueMap mapActions0 = new LinkedMultiValueMap();MultiValueMap mapActions1 = new LinkedMultiValueMap();

    //Id
map.add("Id","33396");

//Actions
mapActions0.add("Key","5");
mapActions0.add("Value","Test");
mapActions1.add("Key","6");
mapActions1.add("Value","Test 2");

map.put("AcoesVideo",Arrays.asList(mapActions0,mapActions));

最佳答案

使用 HashMap并使用 Map<String, Map<String, String>>这样做

Map<String, Map<String, String>> map = new HashMap<>();
Map<String, String> actions = new HashMap<>();

actions.put("5", "test");
actions.put("6", "test2");

map.put("33396", actions);

关于java - Java 上带有 MultiValueMap 的 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44934174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com