JAvaエスケープHTMLラベル

1338 ワード

     if (content== null return   "" ;             String html = content;      html = StringUtils.replace(html,  "'" "&apos;" );      html = StringUtils.replace(html,  "\"" "&quot;" );      html = StringUtils.replace(html,  "\t" "&nbsp;&nbsp;" ); //      //html = StringUtils.replace(html, " ", "&nbsp;");//      html = StringUtils.replace(html,  "<" "&lt;" );      html = StringUtils.replace(html,  ">" "&gt;" );      return   html;
 
HTMLタグエスケープメソッド-javaコードライブラリ-クラウドコードhttp://yuncode.net/code/c_50d01e073973762