這篇文章主要講解了“java獲取中文拼音首字母工具類定義與實例用法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“java獲取中文拼音首字母工具類定義與實例用法”吧!
10年積累的成都網(wǎng)站設(shè)計、網(wǎng)站制作經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有婺城免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。本文實例講述了java獲取中文拼音首字母工具類定義與用法。分享給大家供大家參考,具體如下:
package com.sw.documentary.common.utils;public class GB2Alpha { //字母Z使用了兩個標(biāo)簽,這里有27個值 //i, u, v都不做聲母, 跟隨前面的字母 private char[] chartable = { '啊', '芭', '擦', '搭', '蛾', '發(fā)', '噶', '哈', '哈', '擊', '喀', '垃', '媽', '拿', '哦', '啪', '期', '然', '撒', '塌', '塌', '塌', '挖', '昔', '壓', '匝', '座' }; 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() { } //主函數(shù),輸入字符,得到他的聲母, //英文字母返回對應(yīng)的大寫字母 //其他非簡體漢字返回 '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]; } //根據(jù)一個包含漢字的字符串返回一個漢字拼音首字母的字符串 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使用了兩個標(biāo)簽 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; }}
運行結(jié)果:
JBZJHYN
感謝各位的閱讀,以上就是“java獲取中文拼音首字母工具類定義與實例用法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對java獲取中文拼音首字母工具類定義與實例用法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!