• java 将表情转换成字符串存入数据库


    /**
        * @Description 将字符串中的emoji表情转换成可以在utf-8字符集数据库中保存的格式(表情占4个字节,需要utf8mb4字符集)
        * @param str
        * 待转换字符串
        * @return 转换后字符串
        * @throws UnsupportedEncodingException
        * exception
        */
        public static String emojiConvert1(String str)
        throws UnsupportedEncodingException {
            String patternString = "([\x{10000}-\x{10ffff}ud800-udfff])";
        
            Pattern pattern = Pattern.compile(patternString);
            Matcher matcher = pattern.matcher(str);
            StringBuffer sb = new StringBuffer();
            while(matcher.find()) {
                try {
                    matcher.appendReplacement(
                    sb,
                    "[["
                    + URLEncoder.encode(matcher.group(1),
                    "UTF-8") + "]]");
                } catch(UnsupportedEncodingException e) {
                    System.out.println(e);
                    throw e;
                }
            }
            matcher.appendTail(sb);
            System.out.println("emojiConvert " + str + " to " + sb.toString()
            + ", len:" + sb.length());
            return sb.toString();
        }
    
        /**
        * @Description 还原utf8数据库中保存的含转换后emoji表情的字符串
        * @param str
        * 转换后的字符串
        * @return 转换前的字符串
        * @throws UnsupportedEncodingException
        * exception
        */
        public static String emojiRecovery2(String str)
            throws UnsupportedEncodingException {
            String patternString = "\[\[(.*?)\]\]";
        
            Pattern pattern = Pattern.compile(patternString);
            Matcher matcher = pattern.matcher(str);
        
            StringBuffer sb = new StringBuffer();
            while(matcher.find()) {
                try {
                    matcher.appendReplacement(sb,
                    URLDecoder.decode(matcher.group(1), "UTF-8"));
                } catch(UnsupportedEncodingException e) {
                    System.out.println(e);
                    throw e;
                }
            }
            matcher.appendTail(sb);
            System.out.println("emojiRecovery " + str + " to " + sb.toString());
            return sb.toString();
        }
  • 相关阅读:
    模拟http请求 带 chunked解析办法一
    DLL入口函数
    修复吾爱OD数据窗口双击不出现偏移问题
    PE导入表分析
    持仓盈亏公式
    hadoop工作相关
    zookeeper常用命令
    git使用命令行上传文件
    redis中各种数据类型对应的jedis操作命令
    volatile关键字比较好的解释
  • 原文地址:https://www.cnblogs.com/xiaoliu66007/p/14590921.html
Copyright © 2020-2023  润新知