我真的想使用org.json.JSONObject
。但是某些情况不适用于我的私人项目。因此,我目前使用com.google.code.gson
。
我无法解析此字符串。
"{ \"id\": \"\", \"title\": \"\", \"message\": \"\"}"
这是我的代码:
JsonElement jsonElementFormat = data.parse(format);
JsonObject jsonFormat = jsonElementFormat.getAsJsonObject();
此代码获取此异常。
java.lang.IllegalStateException: Not a JSON Object: "{ \"id\": \"\", \"title\": \"\", \"message\": \"\"}"
所以我尝试了这段代码。
format = format.replace("\\\"", "'");
JsonElement jsonElementFormat = data.parse(format);
JsonObject jsonFormat = jsonElementFormat.getAsJsonObject();
,此代码获取异常。 我该做什么?? 救救我!