如何将 Java 对象转换为 JSON 对象?

我需要将 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();
    }

但这次我不想要文件。


答案 1

如果我们以GSON格式解析服务器的所有模型类,那么这是将java对象转换为以下代码的最佳方法,它是一个java对象,它被转换为.JSONObject.InSampleObjectJSONObject

SampleObject mSampleObject = new SampleObject();
String jsonInString = new Gson().toJson(mSampleObject);
JSONObject mJSONObject = new JSONObject(jsonInString);

答案 2

如果它不是一个太复杂的对象,你可以自己做,没有任何库。下面是一个示例:

public class DemoObject {

    private int mSomeInt;
    private String mSomeString;

    public DemoObject(int i, String s) {

        mSomeInt = i;
        mSomeString = s;
    }

    //... other stuff

    public JSONObject toJSON() {

        JSONObject jo = new JSONObject();
        jo.put("integer", mSomeInt);
        jo.put("string", mSomeString);

        return jo;
    }
}

在代码中:

DemoObject demo = new DemoObject(10, "string");
JSONObject jo = demo.toJSON();

当然,如果您不介意额外的依赖关系,您也可以使用Google Gson来处理更复杂的内容和不那么繁琐的实现。