hutool的String转json
时间: 2023-08-15 08:12:37 浏览: 848
java转json工具类说明文档
4星 · 用户满意度95%
Hutool 提供了一个 `JSONUtil` 工具类,可以将字符串转换为 JSON 对象。
示例代码:
```java
import cn.hutool.json.JSON;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
public class Test {
public static void main(String[] args) {
String jsonStr = "{\"name\":\"张三\",\"age\":18,\"gender\":\"male\"}";
JSONObject json = JSONUtil.parseObj(jsonStr);
System.out.println(json.get("name"));
System.out.println(json.get("age"));
System.out.println(json.get("gender"));
}
}
```
输出结果:
```
张三
18
male
```
可以看到,我们将字符串 `jsonStr` 转换为了 JSON 对象,并且可以通过 `get` 方法获取对象中的属性值。
阅读全文