现在的位置: 首页 > 综合 > 正文

如何判断字符串中有中文!

2013年12月04日 ⁄ 综合 ⁄ 共 1894字 ⁄ 字号 评论关闭

如何判断字符串中有中文!

作者:nanman

若有返回真,无返回假,怎么做?谢谢  
jbuilder ---------------------------------------------------------------  
 
copy一个给你:  
public  static  boolean  hasFullSize(String  inStr){  
           if  (inStr.getBytes().length  !=  inStr.length())  {  
                   return  true;  
           }                                  
           return  false;  
}  
 
---------------------------------------------------------------  
 
自己写的珍藏代码:  
/**  
         *  用getBytes(encoding):返回字符串的一个byte数组  
         *  当b[0]为  63时,应该是转码错误  
         *  A、不乱码的汉字字符串:  
         *  1、encoding用GB2312时,每byte是负数;  
         *  2、encoding用ISO8859_1时,b[i]全是63。  
         *  B、乱码的汉字字符串:  
         *  1、encoding用ISO8859_1时,每byte也是负数;  
         *  2、encoding用GB2312时,b[i]大部分是63。  
         *  C、英文字符串  
         *  1、encoding用ISO8859_1和GB2312时,每byte都大于0;  
         *  

 
         *  总结:给定一个字符串,用getBytes("iso8859_1")  
         *  1、如果b[i]有63,不用转码;  A-2  
         *  2、如果b[i]全大于0,那么为英文字符串,不用转码;  B-1  
         *  3、如果b[i]有小于0的,那么已经乱码,要转码。  C-1  
         */  
       private  static  String  toGb2312(String  str)  {  
               if  (str  ==  null)  return  null;  
               String  retStr  =  str;  
               byte  b[];  
               try  {  
                       b  =  str.getBytes("ISO8859_1");  
 
                       for  (int  i  =  0;  i                                 byte  b1  =  b[i];  
                               if  (b1  ==  63)  
                                       break;    //1  
                               else  if  (b1  >  0)  
                                       continue;//2  
                               else  if  (b1                                         retStr  =  new  String(b,  "GB2312");  
                                       break;  
                               }  
                       }  
               }  catch  (UnsupportedEncodingException  e)  {  
                       //  e.printStackTrace();    //To  change  body  of  catch  statement  use  File    ¦  Settings    ¦  File  Templates.  
               }  
               return  retStr;  
       }  
---------------------------------------------------------------  
 
String  str  =  "";  
if  (request.getParameter("input")  !=  null)  {  
   str  =  request.getParameter("input");  
   if  (str.length()  ==  str.getBytes().length)  
       System.out.println("半角  character");  
   else  
       System.out.println("全角  character");  
}

抱歉!评论已关闭.