美文网首页
mysql 插入失败 incorrect string valu

mysql 插入失败 incorrect string valu

作者: leeyaf | 来源:发表于2017-03-10 18:29 被阅读63次

    把4字节的编码类似0xF0替换掉

    private String removeFourChar(String content) {
       byte[] conbyte = content.getBytes();
       for (int i = 0; i < conbyte.length; i++) {
           if ((conbyte[i] & 0xF8) == 0xF0) {
               for (int j = 0; j < 4; j++) {                          
                   conbyte[i+j]=0x30;                     
               }  
               i += 3;
           }
       }
       content = new String(conbyte);
       return content.replaceAll("0000", "*");
     }

    相关文章

      网友评论

          本文标题:mysql 插入失败 incorrect string valu

          本文链接:https://www.haomeiwen.com/subject/ojrbgttx.html