gpt4 book ai didi

java - 如何使用 net.sf.json.JSONObject 库将多个 JSON 实例放入单个 JSON 对象中

转载 作者:行者123 更新时间:2023-11-30 09:48:04 28 4
gpt4 key购买 nike

 //create the JSON Object to pass to the client
JSONObject object=new JSONObject();

//one instance
object.put("name","something2");
object.put("status", "up");

//second instance
object.put("name", "something2");
object.put("status", "down");

String json = object.toString();

response.getOutputStream().print(json);

System.out.println("JSON Contents: "+json);

期望的输出:{name: something1, status: up}, {name: something2, status: down}...等

最佳答案

你需要有 JSONArray :

JSONArray jsonarray = new JSONArray(); jsonarray.add(object)...

关于java - 如何使用 net.sf.json.JSONObject 库将多个 JSON 实例放入单个 JSON 对象中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6411807/

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