我正在尝试使用 org.json 库在 java 中创建一个 json 字符串,以下是代码片段。
JSONArray jSONArray = new JSONArray();
JSONObject jSONObject = new JSONObject();
jSONObject.accumulate("test", jSONArray);
System.out.println(jSONObject.toString());
我希望它打印出来
{"test":[]}
当它打印时
{"test":[[]]}