jsonobject.tojsonstring用法
时间: 2023-04-23 07:06:05 浏览: 259
JSONObject用法
`jsonobject.tojsonstring()` 是 Java 的一个方法,它可以将一个 JSONObject 对象转换为字符串。
用法示例:
```
JSONObject json = new JSONObject();
json.put("name", "John Doe");
json.put("age", 30);
String jsonString = json.toJSONString();
```
在上面的示例中,我们创建了一个名为 "json" 的 JSONObject 对象,并使用 `put` 方法添加了两个键值对: "name" 和 "age"。然后使用 `toJSONString()` 方法将 JSONObject 对象转换为字符串并将其赋值给变量 "jsonString"。
阅读全文