您好,登錄后才能下訂單哦!
本文實例講述了java獲取中文拼音首字母工具類定義與用法。分享給大家供大家參考,具體如下:
package com.sw.documentary.common.utils; public class GB2Alpha { //字母Z使用了兩個標簽,這里有27個值 //i, u, v都不做聲母, 跟隨前面的字母 private char[] chartable = { '啊', '芭', '擦', '搭', '蛾', '發', '噶', '哈', '哈', '擊', '喀', '垃', '媽', '拿', '哦', '啪', '期', '然', '撒', '塌', '塌', '塌', '挖', '昔', '壓', '匝', '座' }; private char[] alphatable = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' }; private int[] table = new int[27]; //初始化 { for (int i = 0; i < 27; ++i) { table[i] = gbValue(chartable[i]); } } public GB2Alpha() { } //主函數,輸入字符,得到他的聲母, //英文字母返回對應的大寫字母 //其他非簡體漢字返回 '0' public char Char2Alpha(char ch) { if (ch >= 'a' && ch <= 'z') return (char) (ch - 'a' + 'A'); if (ch >= 'A' && ch <= 'Z') return ch; int gb = gbValue(ch); if (gb < table[0]) return '0'; int i; for (i = 0; i < 26; ++i) { if (match(i, gb)) break; } if (i >= 26) return '0'; else return alphatable[i]; } //根據一個包含漢字的字符串返回一個漢字拼音首字母的字符串 public String String2Alpha(String SourceStr){ String Result = ""; int StrLength = SourceStr.length(); int i; try { for (i = 0; i < StrLength; i++) { Result += Char2Alpha(SourceStr.charAt(i)); } } catch (Exception e) { Result = ""; } return Result; } private boolean match(int i, int gb) { if (gb < table[i]) return false; int j = i + 1; //字母Z使用了兩個標簽 while (j < 26 && (table[j] == table[i])) ++j; if (j == 26) return gb <= table[j]; else return gb < table[j]; } //取出漢字的編碼 private int gbValue(char ch) { String str = new String(); str += ch; try { byte[] bytes = str.getBytes("GB2312"); if (bytes.length < 2) return 0; return (bytes[0] << 8 & 0xff00) + (bytes[1] & 0xff); } catch (Exception e) { return 0; } } public static void main(String[] args) { GB2Alpha obj1 = new GB2Alpha(); System.out.println(obj1.String2Alpha("億速云")); System.out.println(obj1.String2Alpha("歡迎你")); return; } }
運行結果:
JBZJ
HYN
PS:這里再為大家提供幾款本站拼音與字母相關工具供大家參考:
在線中英文根據首字母排序工具:
http://tools.jb51.net/aideddesign/zh_paixu
在線漢字轉換成拼音工具:
http://tools.jb51.net/transcoding/pinyin
在線中文漢字轉拼音工具:
http://tools.jb51.net/transcoding/hanzi2pinyin
在線中文漢字拼音對照轉換工具:
http://tools.jb51.net/transcoding/zh_pinyin
在線字母大小寫轉換工具:
http://tools.jb51.net/transcoding/upper
更多關于java相關內容感興趣的讀者可查看本站專題:《Java數組操作技巧總結》、《Java字符與字符串操作技巧總結》、《Java數學運算技巧總結》、《Java數據結構與算法教程》及《Java操作DOM節點技巧總結》
希望本文所述對大家java程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。