有没有办法解码字符串?

时间:2011-02-14 18:26:37

标签: java android html

  

可能重复:
  How can I Decode string?
  Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?

您好,

我的字符串就像例如“& auml; s& aring;”需要像这样转换“äså”请帮助我。

提前致谢

1 个答案:

答案 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å
    }
}