fastjson json字符串转jsonObject
时间: 2023-09-11 20:05:02 浏览: 109
使用 fastjson 将 JSON 字符串转换为 JSONObject 的示例代码如下:
```java
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.JSON;
public class Example {
public static void main(String[] args) {
String jsonString = "{\"name\":\"Alice\",\"age\":20,\"email\":\"alice@example.com\"}";
JSONObject jsonObject = JSON.parseObject(jsonString);
String name = jsonObject.getString("name");
int age = jsonObject.getIntValue("age");
String email = jsonObject.getString("email");
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("Email: " + email);
}
}
```
在这个示例中,我们首先将 JSON 字符串 `{"name":"Alice","age":20,"email":"alice@example.com"}` 存储在一个字符串变量 `jsonString` 中。然后,我们使用 `JSON.parseObject` 方法将其转换为一个 JSONObject 对象 `jsonObject`。接下来,我们使用 `jsonObject` 对象的 `getString` 和 `getIntValue` 方法获取其中的属性值,并将其输出到控制台中。
阅读全文