如何将 Java 对象转换为 JSON 对象?
2022-09-01 20:02:38
我需要将 POJO 转换为 JSONObject (org.json.JSONObject)
我知道如何将其转换为文件:
ObjectMapper mapper = new ObjectMapper();
try {
mapper.writeValue(new File(file.toString()), registrationData);
} catch (JsonGenerationException e) {
e.printStackTrace();
} catch (JsonMappingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
但这次我不想要文件。