安卓實現自動獲取漢字的首字母

2021-09-25 10:19:23 字數 878 閱讀 2508

//自動獲取漢子的首字母

static final int gb_sp_diff = 160;

// 存放國標一級漢字不同讀音的起始區位碼

static final int secposvaluelist = ;

// 存放國標一級漢字不同讀音的起始區位碼對應讀音

static final char firstletter = ;

public static string getspells(string characters)  else 

}return buffer.tostring();

}// 獲取乙個漢字的首字母

public static character getfirstletter(char ch) catch (unsupportedencodingexception e)

if (unicode[0] < 128 && unicode[0] > 0) else

}/**

* 獲取乙個漢字的拼音首字母。 gb碼兩個位元組分別減去160,轉換成10進製碼組合就可以得到區位碼

* 例如漢字「你」的gb碼是0xc4/0xe3,分別減去0xa0(160)就是0x24/0x43

* 0x24轉成10進製就是36,0x43是67,那麼它的區位碼就是3667,在對照表中讀音為『n』

*/static char convert(byte bytes)

secposvalue = bytes[0] * 100 + bytes[1];

for (i = 0; i < 23; i++)

}return result;

}

在使用的時候呼叫getspells方法即可。

獲取漢字拼音首字母

有個專案需要用到生成漢字的首字母,但從網上查了一下,對於多音字的處理都不是很好,所以就利用pinyin4j這個工具包自己寫了乙個。用到的jar包是pinyin4j 2.5.0.jar 獲取拼音首字母,多音字用逗號隔開 public static string getfirstspell string...

獲取漢字拼音首字母

unit py inte ce uses sysutils 獲取漢字的拼音首字元,這個函式將用在getpyindexstr 中.function getpyindexchar strchinese string bupcase boolean true char 獲取多個漢字的拼音首字元組成的字串....

獲取漢字拼音首字母

獲取漢字拼音首字母 獲取漢字拼音首字母 很好用.覺的不錯的幫頂 1.下面的不上亂碼是位元組 第一步建立乙個函式 create or replace function f trans pinyin capital p name in varchar2 return varchar2 as v comp...