json解析時に英語の二重引用符が間違っているという解決方法
Jsonを解析する時、英語の二重引用符が付いていて、解析エラーが発生しました。jsonを変換してもいいです。
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("
", "<br/>"); //
, < > , <br/>
return input;
}
以上のjson解析の時、英語の二重引用符が間違っているという問題の解決方法は小編が皆さんに教えた内容を全部共有しています。