我有一个gson.JsonObject
个对象。从中创建org.json.JSONObject
对象的最简单方法是什么?
答案 0 :(得分:18)
从JsonObject
再次获取JSON字符串,并在JSONObject
JsonObject gson = new JsonParser().parse("{\"id\":\"value\"}").getAsJsonObject();
JSONObject jo2 = new JSONObject(gson.toString());
答案 1 :(得分:7)
new org.json.JSONObject(gson.toJson(gson.JsonObject));