JSP有汉字转化拼音的组件吗? ( 积分: 100 )

  • 主题发起人 主题发起人 雨生恨风无痕
  • 开始时间 开始时间

雨生恨风无痕

Unregistered / Unconfirmed
GUEST, unregistred user!
原来用的是delphi里的intalweb,作网站。但制作好象没asp、jsp那样好编程,还是想请教大家:JSP有没汉字转化拼音的组件?
 
原来用的是delphi里的intalweb,作网站。但制作好象没asp、jsp那样好编程,还是想请教大家:JSP有没汉字转化拼音的组件?
 
转一个得到首字母的
说明:用来取汉字拼音首字母的一个java类,举例如:汉字"中华人民共和国"取汉字拼音首字母的结果是ZHRMGHG。
程序如下:
package gov.mca;
/**
* Created by IntelliJ IDEA.
* User: 裴贺先
* Date: 2004-5-17
* Time: 10:59:59
* ClassDescription:取出汉字字符串的拼音首字母
*/

import java.lang.*;
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 = gbValue(chartable);
}
}
public GB2Alpha() {
}
//主函数,输入字符,得到他的声母,
//英文字母返回对应的大写字母
//其他非简体汉字返回 '0'
public char Char2Alpha(char ch) {
if (ch >= 'a' &amp;&amp;
ch <= 'z')
return (char) (ch - 'a' + 'A');
if (ch >= 'A' &amp;&amp;
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;
}
//根据一个包含汉字的字符串返回一个汉字拼音首字母的字符串
public String String2Alpha(String SourceStr) {
String Result = &quot;&quot;;
int StrLength = SourceStr.length();
int i;
try {
for (i = 0;
i < StrLength;
i++) {
Result += Char2Alpha(SourceStr.charAt(i));
}
} catch (Exception e) {
Result = &quot;&quot;;
}
return Result;
}
private boolean match(int i, int gb) {
if (gb < table)
return false;
int j = i + 1;
//字母Z使用了两个标签
while (j < 26 &amp;&amp;
(table[j] == table))
++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(&quot;GB2312&quot;);
if (bytes.length < 2)
return 0;
return (bytes[0] << 8 &amp;
0xff00) + (bytes[1] &amp;
0xff);
} catch (Exception e) {
return 0;
}
}

public static void main(String[] args) {
com.mkrx.GB2Alpha obj1 = new com.mkrx.GB2Alpha();
System.out.println(obj1.String2Alpha(&quot;测试:中华人民共和国!&quot;));
System.out.println(obj1.String2Alpha(&quot;裴贺先&quot;));
return;
}
}
我测试过了,可以
 
private int gbValue(char ch) {
String str = new String();
str += ch;
try {
byte[] bytes = str.getBytes(&quot;GB2312&quot;);
if (bytes.length < 2)
return 0;
return (bytes[0] << 8 &amp;
0xff00) + (bytes[1] &amp;
0xff);
} catch (Exception e) {
return 0;
}
 

Similar threads

S
回复
0
查看
896
SUNSTONE的Delphi笔记
S
S
回复
0
查看
873
SUNSTONE的Delphi笔记
S
D
回复
0
查看
909
DelphiTeacher的专栏
D
D
回复
0
查看
704
DelphiTeacher的专栏
D
D
回复
0
查看
666
DelphiTeacher的专栏
D
后退
顶部