可能重复:
How can I Decode string?
Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?
您好,
我的字符串就像例如“& auml; s& aring;”需要像这样转换“äså”请帮助我。
提前致谢
答案 0 :(得分:3)
查看Apache Commons库中的StringEscapeUtils
类。 (特别是unescapeHtml
method)。
import org.apache.commons.lang.StringEscapeUtils;
public class Test {
public static void main(String[] args) {
String str = "äså";
System.out.println(StringEscapeUtils.unescapeHtml(str)); // prints äså
}
}