欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取字符串中的中文字符长度

程序员文章站 2022-07-05 14:48:57
...
Java代码 获取字符串中的中文字符长度
            
    
    博客分类: java java  获取字符串中的中文字符长度
            
    
    博客分类: java java 
  1. /**  
  2.      * 获取字符串中的中文字符长度  
  3.      * @param str  
  4.      * @return  
  5.      */  
  6.     public static int getChineseCharacters(String str){   
  7.         byte chars[]=str.getBytes();   
  8.         String cc="";   
  9.         byte temp[]=new byte[2];   
  10.         for(int i=0, count=0; i<chars.length; i++){   
  11.             if(chars[i]<0){   
  12.                 temp[count]=chars[i];   
  13.                 count++;   
  14.                 if(count%2==0){   
  15.                     cc+=new String(temp);   
  16.                     count=0;   
  17.                 }   
  18.             }   
  19.         }   
  20.         return cc.length();   
  21.     }  
相关标签: java