org.json.JSONObject 转 com.alibaba.fastjson.JSONObject
时间: 2023-09-12 13:06:03 浏览: 189
可以通过以下方式将 `org.json.JSONObject` 转换为 `com.alibaba.fastjson.JSONObject`:
```java
import com.alibaba.fastjson.JSONObject;
import org.json.JSONObject;
public class Example {
public static void main(String[] args) {
JSONObject orgJsonObj = new JSONObject("{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}");
JSONObject fastJsonObj = JSONObject.parseObject(orgJsonObj.toString());
System.out.println(fastJsonObj);
}
}
```
首先,我们需要导入 `com.alibaba.fastjson.JSONObject` 和 `org.json.JSONObject` 类。然后,我们可以使用 `org.json.JSONObject` 创建一个 JSON 对象 `orgJsonObj`。接下来,我们将 `orgJsonObj` 转换为字符串,并使用 `com.alibaba.fastjson.JSONObject` 的 `parseObject` 方法将其转换为 `fastJsonObj`。最后,我们可以打印 `fastJsonObj` 来验证转换是否成功。
阅读全文