标签:测试 htm download http apach out common amp int
下载地址:http://commons.apache.org/proper/commons-lang/download_lang.cgi
1.HTML
转义
System.out.println(StringEscapeUtils.escapeHtml4("<div></div>"));
输出:<div></div>
反转义
System.out.println(StringEscapeUtils.unescapeHtml4("<div></div>"));
输出:<div></div>
2.XML
转义
System.out.println(StringEscapeUtils.escapeHtml4("<div></div>"));
输出:<div></div>
反转义
System.out.println(StringEscapeUtils.unescapeHtml4("<div></div>"));
输出:<div></div>
3.JAVA
转义
System.out.println(StringEscapeUtils.escapeJava("中国"));
输出:\u4E2D\u56FD
反转义
System.out.println(StringEscapeUtils.unescapeJava("\u4E2D\u56FD"));
输出:中国
标签:测试 htm download http apach out common amp int
原文地址:http://www.cnblogs.com/luoruiyuan/p/6025925.html