net.sf.json.jsonobject 转字符串
时间: 2023-09-13 07:05:18 浏览: 97
Json将对象转换成字符串
你可以使用 net.sf.json.JSONObject 类的 toString() 方法将 JSONObject 对象转换为字符串。例如:
```
JSONObject jsonObject = new JSONObject();
jsonObject.put("name", "John");
jsonObject.put("age", 30);
String jsonString = jsonObject.toString();
System.out.println(jsonString);
```
输出结果为:
```
{"name":"John","age":30}
```
阅读全文