有没有办法如何在包含html标签的字符串中的Java字符中进行转义,我想不要逃避?例如在字符串中我有
<h1>a b c d ö</h1>
我需要得到:
<h1>a b c d ö</h1>
答案 0 :(得分:1)
请参阅:
public static void main(String[] args) {
String s = "a b c d ö";
System.out.println(StringEscapeUtils.escapeHtml4(s));
}
答案 1 :(得分:0)
选中此项:
g++
println textOut:String textIn = "<h1>a b c d ö</h1>";
String textOut = StringEscapeUtils.escapeHtml4(textIn);
对于xml或标签:
<h1>a b c d ö</h1>
println :textOut String textIn = "<h1>a b c d ö</h1>";
String textOut = StringEscapeUtils.unescapeXml(StringEscapeUtils.escapeHtml4(textIn));