报错:JSONException: illegal identifier : pos 1, line 1, column 2 或not close json text, token : error

时间:2025-04-03 18:23:09

报错:JSONException: illegal identifier : \pos 1, line 1, column 2 或JSONException: not close json text, token : error

  • 简述问题
  • 处理
  • 结果

简述问题

调用接口返回的内容字符串为拼接,无法正常转化为json格式:

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

问题:

  1. 字符床两边均多出双引号 ",应该为大括号 {}
  2. 键值对中,参数名以及值采用双引号,所以出现很多转义斜杠 \

处理

  1. 去外层引号
    采用hutool工具,比较方便,也可定义两边不同符号。具体功能自行发掘
String string = StrUtil.strip(httpResponse.body(), "\"");
  1. 转移字符串
    采用lang3下();方法,但是已被标为已过期,根据提示引入commons-text包,并调用此包下的此方法即可。
<!-- 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);

结果

JSONObject jSONObject1 = JSONObject.parseObject(string);