java JSONObject json.put 设置参数,该如何设置"unitIds": ["475247007855"]
时间: 2023-07-21 07:21:59 浏览: 153
net.sf.json.JSONObject依赖库.zip
可以使用以下代码在 Java 中使用 JSONObject 来设置 "unitIds" 参数:
```java
import org.json.JSONObject;
public class Main {
public static void main(String[] args) {
JSONObject json = new JSONObject();
json.put("unitIds", new String[]{"475247007855"});
System.out.println(json.toString());
}
}
```
输出结果为:
```
{"unitIds":["475247007855"]}
```
其中,`json.put("unitIds", new String[]{"475247007855"})` 表示将一个字符串数组作为参数设置到 "unitIds" 中,最后使用 `json.toString()` 将 JSONObject 对象转换为 JSON 字符串。
阅读全文