当前位置:编程学习 > JSP >>

获得汉字拼音首字母的java工具类

答案:

public class GetCh2Spell {
    public static int compare(String str1, String str2)
     {
         int result = 0;
         String m_s1 = null;
         String m_s2 = null;
         try
         {
             m_s1 = new String(str1.getBytes(_FromEncode_), _ToEncode_);
             m_s2 = new String(str2.getBytes(_FromEncode_), _ToEncode_);
         }
         catch(Exception e)
         {
             return str1.compareTo(str2);
         }
         result = chineseCompareTo(m_s1, m_s2);
         return result;
     }

     public static int getCharCode(String s)
     {
         if(s == null && s.equals(""))
             return -1;
         byte b[] = s.getBytes();
         int value = 0;
         for(int i = 0; i < b.length && i <= 2; i++)
             value = value * 100 + b[i];

         return value;
     }

     public static int chineseCompareTo(String s1, String s2)
     {
         int len1 = s1.length();
         int len2 = s2.length();
         int n = Math.min(len1, len2);
         for(int i = 0; i < n; i++)
         {
             int s1_code = getCharCode(s1.charAt(i) + "");
             int s2_code = getCharCode(s2.charAt(i) + "");
             if(s1_code * s2_code < 0)
                 return Math.min(s1_code, s2_code);
             if(s1_code != s2_code)
                 return s1_code - s2_code;
         }

         return len1 - len2;
     }

     public static String getBeginCharacter(String res)
     {
         String a = res;
         String result = "";
         for(int i = 0; i < a.length(); i++)
         {
             String current = a.substring(i, i + 1);
             if(compare(current, "\u554A") < 0)
                 result = result + current;
             else
             if(compare(current, "\u554A") >= 0 && compare(current, "\u5EA7") <= 0)
                 if(compare(current, "\u531D") >= 0)
                     result = result + "z";
                 else
                 if(compare(current, "\u538B") >= 0)
                     result = result + "y";
                 else
                 if(compare(current, "\u6614") >= 0)
                     result = result + "x";
                 else
                 if(compare(current, "\u6316") >= 0)
                     result = result + "w";
                 else
                 if(compare(current, "\u584C") >= 0)
                     result = result + "t";
                 else
                 if(compare(current, "\u6492") >= 0)
                     result = result + "s";
                 else
                 if(compare(current, "\u7136") >= 0)
                     result = result + "r";
                 else
                 if(compare(current, "\u671F") >= 0)
                     result = result + "q";
                 else
                 if(compare(current, "\u556A") >= 0)
                     result = result + "p";
                 else
                 if(compare(current, "\u54E6"

上一个:Java加密和licence控制的设计
下一个:用java编写简单UDP网络通信程序

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,