gogoWebsite

Error: JSONException: illegal identifier : \pos 1, line 1, column 2 or not close json text, token : error

Updated to 19 hours ago

Error: JSONException: illegal identifier : \pos 1, line 1, column 2 or JSONException: not close json text, token : error

  • Briefly describe the problem
  • deal with
  • result

Briefly describe the problem

The content string returned by the calling interface is spliced ​​and cannot be converted to json format normally:

"{\"ReturnCode\":1,\"Message\":\"\"}"

question:

  1. Double quotes are added on both sides of the character bed", should be braces{}
  2. In the key-value pair, the parameter name and value are double quoted, so many escaped slashes appear.\

deal with

  1. Remove the outer quotation marks
    Using the hutool tool is more convenient, and different symbols on both sides can also be defined. Discover specific functions by yourself
String string = StrUtil.strip(httpResponse.body(), "\"");
  1. Transfer strings
    Use the lang3 method (); but it has been marked as expired. It is introduced according to the prompts.commons-textand call this method under this package.
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-text -->
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-text</artifactId>
    <version>1.9</version>
</dependency>

string = StringEscapeUtils.unescapeJava(string);

result

JSONObject jSONObject1 = JSONObject.parseObject(string);