/**
* ページ内データで出てくる(&<>)部分をhtml表記に変換する
* @param text ページデータ
* @return String 変換後ページデータ
*/
public static String htmlspecialchars2(String text){
text = text.replaceAll("&", "&");
text = text.replaceAll("<", "<");
text = text.replaceAll(">", ">");
return text;
}