gpt4 book ai didi

java - 类似于 GSON in Jackson for arrays

转载 作者:行者123 更新时间:2023-11-29 05:55:45 24 4
gpt4 key购买 nike

我正在尝试将数组或列表 (java) 转换为 JSON 格式。我已经看到在 GSON 中我们可以执行以下操作:

data.add("hello");
data.add(someobject);
String gson = new Gson().toJson(data);

Jackson有类似的方式吗?

最佳答案

Jackson 中有一个等价物:ObjectMapper.writeValueAsString .

List data = new ArrayList();
ObjectMapper mapper = new ObjectMapper();

data.add("hello");
data.add(someobject);

String json = mapper.writeValueAsString(data);

关于java - 类似于 GSON in Jackson for arrays,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12197472/

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