java实现html标签转义 StringEscapeUtils.unescapeHtml4

@Test
	@Rollback(value = false)
	public void testhtmlEscape() {
		String html = "

>100岁

"
; String value = StringEscapeUtils.unescapeHtml4(html.replaceAll("<.*?>", "")); System.out.println(value); }
>100

你可能感兴趣的:(java工具类)