當前位置:成語大全網 - 新華字典 - java中,中文首字母搜索是怎麽實現的?

java中,中文首字母搜索是怎麽實現的?

樓上的 樓主是要求輸入字母求得相關的漢字字符串,而妳音品碼查詢是從漢字求得首字母吧?

我做過壹個公交查詢系統,其中有個功能就是通過字母顯示出相應的站點。

首先,妳想通過‘W’得到王力宏、王菲等妳就必須先把這些名字存到數據庫中吧,然後妳再在數據庫中給這些名字項添加壹個首字母的字段,當然妳不用手動去輸入它們的首字母,寫個方法循環把它們的首字母輸出並存入數據庫中,方法可用樓上的音品碼查詢,我也寫了個類似的方法,如下:

public class StringUtil {

//private static Log logger = LogFactory.getLog(StringUtil.class);

// 國標碼和區位碼轉換常量

int GB_SP_DIFF = 160;

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

int[] secPosValueList = {

1601, 1637, 1833, 2078, 2274, 2302, 2433, 2594, 2787,

3106, 3212, 3472, 3635, 3722, 3730, 3858, 4027, 4086,

4390, 4558, 4684, 4925, 5249, 5600};

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

char[] firstLetter = {

'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j',

'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',

't', 'w', 'x', 'y', 'z'};

char convert(String ch) {

byte[] bytes=new byte[2];

try {

bytes = ch.getBytes("GB2312");

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

char result = '-';

int secPosValue = 0;

int i;

for (i = 0; i < bytes.length; i++) {

bytes[i] -= GB_SP_DIFF;

}

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

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

if (secPosValue >= secPosValueList[i] && secPosValue < secPosValueList[i + 1]) {

result = firstLetter[i];

break;

}

}

return result;

}

}

調用convert(String str)方法就是返回str字符串的首字的首字母。其它的應該沒什麽難的了,代碼看不懂給我發信息。