Java,json对象转化为json字符串
时间: 2024-05-07 14:16:49 浏览: 90
JSON对象转化为字符串详解
5星 · 资源好评率100%
可以使用JSON库中的JSONObject类将Java中的JSON对象转换为JSON字符串。代码示例如下:
```
import org.json.JSONObject;
// 创建JSON对象
JSONObject jsonObject = new JSONObject();
jsonObject.put("name", "John");
jsonObject.put("age", 30);
// 转换为JSON字符串
String jsonString = jsonObject.toString();
System.out.println(jsonString);
```
输出结果为:
```
{"name":"John","age":30}
```
阅读全文