java string转换jsonObject
时间: 2023-06-05 21:08:36 浏览: 428
(Java)json和String互转必备Jar包
好的,我可以回答这个问题。您可以使用 JSON 库来将 Java 字符串转换为 JSONObject 对象,例如使用 Gson 库的 fromJson() 方法实现转换。您可以参考以下示例代码:
String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";
JSONObject jsonObject = new JSONObject(jsonString);
或者使用 Gson 库将 Java 对象转换为 JSON 字符串,例如使用 toJson() 方法,代码示例如下:
Person person = new Person();
person.setName("John");
person.setAge(30);
person.setCity("New York");
Gson gson = new Gson();
String json = gson.toJson(person);
希望能对您有所帮助。
阅读全文