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:
- Double quotes are added on both sides of the character bed", should be braces{}
- In the key-value pair, the parameter name and value are double quoted, so many escaped slashes appear.\
deal with
- 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(), "\"");
- 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);