Java用字符串替换表情符号

时间:2013-09-03 05:22:03

标签: java

我有以下功能来替换String中的表情符号:

public String replaceSmileys(String text) {
    for (Entry < String, String > smiley: smileys.entrySet())
        text = text.replaceAll(smiley.getKey(), smiley.getValue());
    return text;
}

static HashMap < String, String > smileys = new HashMap < String, String > ();
smileys.put("&:\\)", "<img src='http://url.com/assets/1.png'/>");
smileys.put("&:\\D", "<img src='http://url.com/assets/2.png'/>");
smileys.put("&;\\)", "<img src='http://url.com/assets/3.png'/>");


String sml = replaceSmileys(msg);

我收到此错误: java.util.regex.PatternSyntaxException: Unknown character property name {} near index 4 &:\P

任何想法我做错了什么?

3 个答案:

答案 0 :(得分:7)

只需要转义括号,而不是文字字符。所以:

smileys.put("&:\\)", "<img src='http://url.com/assets/1.png'/>");
smileys.put("&:D", "<img src='http://url.com/assets/2.png'/>");
smileys.put("&;\\)", "<img src='http://url.com/assets/3.png'/>");

请注意第二行的更改。

基本上,如果你没有逃避闭括号,那么解析器就会混淆,因为它认为它错过了一个开括号。所以你必须逃避括号。另一方面,普通旧字母(在您的示例中为D)不需要转义,因为它们不构成正则表达式构造的一部分。

答案 1 :(得分:1)

代码段应该可以正常工作,除非第二个模式打算匹配笑脸而不是&后跟:然后是非数字字符,那么它应该是。< / p>

    smileys.put("&:D", "<img src='http://url.com/assets/2.png'/>");

答案 2 :(得分:0)

它对我来说很好

public class Test {
    public static void main(String[] args) {
        String sml = replaceSmileys("&:)");
        System.out.println(sml);
    }

    static String replaceSmileys(String text) {
        HashMap < String, String > smileys = new HashMap < String, String > ();
        smileys.put("&:\\)", "<img src='http://url.com/assets/1.png'/>");
        smileys.put("&:D", "<img src='http://url.com/assets/2.png'/>");
        smileys.put("&;\\)", "<img src='http://url.com/assets/3.png'/>");
        for (Entry < String, String > smiley: smileys.entrySet())
            text = text.replaceAll(smiley.getKey(), smiley.getValue());
        return text;
    }
}

输出 -

<img src='http://url.com/assets/1.png'/>