码迷,mamicode.com
首页 > 其他好文 > 详细

Unicode转字符串

时间:2019-02-21 12:26:29      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:[]   eal   int   code   replace   tail   bsp   app   append   

    private String unicodeToString(String string) {
        StringBuffer stringBuffer = new StringBuffer() ;
        String pattern = "\\\\u[0-9,a-f,A-F]{4}";
        Matcher matcher = Pattern.compile(pattern).matcher(string);
        while (matcher.find()) {
            char c = (char) Integer.parseInt(matcher.group().replaceAll("\\\\u", ""), 16);
            matcher.appendReplacement(stringBuffer, new String(new char[]{c}));
        }
        matcher.appendTail(stringBuffer);
        return stringBuffer.toString();
    }

 

Unicode转字符串

标签:[]   eal   int   code   replace   tail   bsp   app   append   

原文地址:https://www.cnblogs.com/LOVE0612/p/10411611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!