JavaでHtmlの特殊符号文字列のencodeとdecodeのサンプルコード
Javaコード下記
public static String encode(String value) {
String htmltext = “";
if (value != null) htmltext = “" + value;
htmltext = htmltext.replaceAll(“\\&", “&");
htmltext = htmltext.replaceAll(“<“, “<");
htmltext = htmltext.replaceAll(“>", “>");
htmltext = htmltext.replaceAll(“\"", “"");
return htmltext;
}
public static String decode(String value) {
String htmltext = “";
if (value != null) htmltext = “" + value;
htmltext = htmltext.replaceAll(“\\"", “\"");
htmltext = htmltext.replaceAll(“\\>", “>");
htmltext = htmltext.replaceAll(“\\<", “<“);
htmltext = htmltext.replaceAll(“\\&", “&");
return htmltext;
}