unescapeHtml

import org.apache.commons.lang.StringEscapeUtils;

public class Test {
	public static void main(String[] args) {
		String str = "限制进";
		System.out.println(StringEscapeUtils.unescapeHtml(str));
	}
}

 

以上程序源自csdn火龙果,这种用法相当简便,但如果不知道,也很难会想到这么用,方法名起得恰到好处,一目了然,unescape Html,反逃脱Html,&#x就应该是Html的逃脱序列(escape sequence),该方法就是为了反逃脱该序列(unescape the sequence, i.e. decode it)。

 

the program needs the commons-lang-x.x.jar

你可能感兴趣的:(apache,html)