一、错误场景

json字符串的value值中有多余的双引号。

错误的json字符串

二、处理方案

自己写个方法将value值中多余的双引号替换为 中文双引号:

// 处理json字符串中value多余的双引号, 将多余的双引号替换为中文双引号

private static String toJsonString(String s) {

char[] tempArr = s.toCharArray();

int tempLength = tempArr.length;

for (int i = 0; i < tempLength; i++) {

if (tempArr[i] == ':' && tempArr[i + 1] == '"') {

for (int j = i + 2; j < tempLength; j++) {

if (tempArr[j] == '"') {

if (tempArr[j + 1] != ',' && tempArr[j + 1] != '}') {

tempArr[j] = '”'; // 将value中的 双引号替换为中文双引号

} else if (tempArr[j + 1] == ',' || tempArr[j + 1] == '}') {

break;

}

}

}

}

}

return new String(tempArr);

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐