我对 Java 的 JSONObject 有很大的问题
所以我有一个错误,发现以下测试代码存在问题:
assertTrue(message.toJSON() != null);
assertTrue(JSONFactory.toJSON(message) != null);
JSONArray jsonArray = new JSONArray();
jsonArray.put(message.toJSON());
jsonArray.put(JSONFactory.toJSON(message));
try {
assertTrue(jsonArray.get(0) != null);
assertTrue(jsonArray.get(1) != null);
DebugLog.d(jsonArray.toString());
} catch (JSONException e) {
e.printStackTrace();
fail();
}
一切都通过了,但是 toString() 给出了 [null, null],所以当我将数组发送到 fontend 时,它会收到 [null, null](不好)
我做了一些研究,它似乎与 JSONOBject.null 有关,但我不知道为什么会发生
我的 toJSON() 方法是这样的:
JSONObject jsonMessage = new JSONObject();
try{
//**adding a bunch of stuff
} catch (JSONException e) {
e.printStackTrace();
}
return jsonMessage;