我需要将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(); }
但这次我不想要一个文件.
解决方法
如果它不是一个太复杂的对象,你可以自己做,没有任何库.以下是一个示例:
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来处理更复杂的东西和不那么繁琐的实现.