json解析時に英語の二重引用符が間違っているという解決方法


Jsonを解析する時、英語の二重引用符が付いていて、解析エラーが発生しました。jsonを変換してもいいです。

public static String htmlEscape(String input) {
if(isEmpty(input)){
  return input;
}
input = input.replaceAll("&", "&");
input = input.replaceAll("<", "&lt;");
input = input.replaceAll(">", "&gt;");
input = input.replaceAll(" ", "&nbsp;");
input = input.replaceAll("'", "&#39;");  //IE            ,           ,           ,           
input = input.replaceAll("\"", "&quot;"); //        ,             
input = input.replaceAll("
", "<br/>"); //
, < > , <br/> return input; }
以上のjson解析の時、英語の二重引用符が間違っているという問題の解決方法は小編が皆さんに教えた内容を全部共有しています。