有时解析json时,会碰到里面带有英文的双引号,导致解析错误,可以将json进行转义,一下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public static String htmlEscape(String input) { if(isEmpty(input)){ return input; } input = input.replaceAll("&", "&"); input = input.replaceAll("<", "<"); input = input.replaceAll(">", ">"); input = input.replaceAll(" ", " "); input = input.replaceAll("'", "'"); //IE暂不支持单引号的实体名称,而支持单引号的实体编号,故单引号转义成实体编号,其它字符转义成实体名称 input = input.replaceAll("\"", """); //双引号也需要转义,所以加一个斜线对其进行转义 input = input.replaceAll("\n", "< br />"); //不能把\n的过滤放在前面,因为还要对<和>过滤,这样就会导致< br />失效了 return input; } |
以上这篇json解析时遇到英文双引号报错的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/u013997090/article/details/77455251