将com.google.gson.JsonObject转换为org.json.simple.JSONObject

时间:2017-06-06 15:10:29

标签: java json parsing gson

简单但棘手,如何在不知道内部属性或手动解析的情况下将com.google.gson.JsonObject转换为org.json.simple.JSONObject

1 个答案:

答案 0 :(得分:2)

到目前为止,我的解决方案是使用org.json.simple.parser.JSONParser来执行此操作:

(JSONObject) new JSONParser().parse("{...}"); // JSON string generated via `com.google.gson.Gson`

享受!