gpt4 book ai didi

java - Jackson 将 json 转换为 String 和列表的映射

转载 作者:行者123 更新时间:2023-11-30 01:48:17 25 4
gpt4 key购买 nike

我有一个如下所示的 json

{
"department": [
{
"status": "active",
"count": "100"
},
{
"status": "active",
"count": "300"
}
],
"finance": [
{
"status": "inactive",
"count": "500"
},
{
"status": "active",
"count": "450"
}
]
}

我的对象如下所示

class CurrentInfo
{
private String status;
private int count;
//getters and setters
}

我想将此 JSON 转换为 Map<String,List<CurrentInfo>> 。我可以使用下面的内容转换各个节点

ObjectMapper mapper = new ObjectMapper();
CurrentInfo currentinfo = mapper.readValue(jsonString, CurrentInfo.class);

有没有办法可以将前面提到的 JSON 直接转换为 Map<String,List<CurrentInfo>>

最佳答案

是的,可以,根据上面的 JSON,countString 类型,而不是 int

class CurrentInfo {
private String status;
private String count;
//getters and setters
}

使用TypeReference将json字符串转换为java对象

Map<String, List<CurrentInfo>> currentInfo = mapper.readValue(
jsonString,
new TypeReference<Map<String, List<CurrentInfo>>>() {});

关于java - Jackson 将 json 转换为 String 和列表的映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57033576/

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