gpt4 book ai didi

java - 以某种格式将数据插入到 JSON 对象中

转载 作者:行者123 更新时间:2023-12-01 20:56:11 24 4
gpt4 key购买 nike

如何向 JSONObject 插入/添加数据我正在尝试创建一个包含以下数据集的 JSONObject。

 {
"feature": "testFeature",
"scenario": [{
"name": "Add numbers",
"tag": "@test"
}, {
"name": "Delete numbers",
"tag": "@test123"
}]

}

我不知道如何继续。请帮忙。

   Collection<JSONObject> items = new ArrayList<JSONObject>();
JSONArray array1 = new JSONArray();
JSONObject item1 = new JSONObject();
item1.put("scenario", array1);

最佳答案

试试这个:

JSONObject main = new JSONObject();
main.put("feature","testFeature");
JSONArray scenario = new JSONArray();
JSONObject s1 = new JSONObject();
s1.put("name","Add numbers");
s1.put("tags","@test");
JSONObject s2 = new JSONObject();
s2.put("name","Delete numbers");
s2.put("tags","@test123");
scenario.add(s1);
scenario.add(s2);
main.put("scenario", scenario);

关于java - 以某种格式将数据插入到 JSON 对象中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42312933/

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