Java之——汉字转换拼⾳(⼤⼩写)
static public String[] toHanyuPinyinStringArray(char ch)
将char(必须为汉字单字)转化为拼⾳,实⽤的是通⽤的格式,如果ch为⾮汉字,返回null。
输⼊:重 输出:[zhong4, chong2]
说明重字有两个读⾳,拼⾳后⾯的1,2,3,4 代表的是读⾳
static public String[] toHanyuPinyinStringArray(char ch,HanyuPinyinOutputFormat outputFormat)
同上,但是这个⽅法可以设置输出的格式。HanyuPinyinOutputFormat 可以设置拼⾳⼤⼩写、是否后⾯加读⾳数字、特殊读⾳的显⽰⽅式,定义如下:
/**
* The option indicates that the output of 'ü' is "u:"
*/
public static final HanyuPinyinVCharType WITH_U_AND_COLON = new HanyuPinyinVCharType("WITH_U_AND_COLON");
/**
* The option indicates that the output of 'ü' is "v"
*/
public static final HanyuPinyinVCharType WITH_V = new HanyuPinyinVCharType("WITH_V")
/**
* The option indicates that the output of 'ü' is "ü" in Unicode form
*/
public static final HanyuPinyinVCharType WITH_U_UNICODE = new HanyuPinyinVCharType("WITH_U_UNICODE");
static public String[] toTongyongPinyinStringArray(char ch) //转换为通⽤拼⾳
static public String[] toWadeGilesPinyinStringArray(char ch) //转换为威妥玛拼⾳
static public String[] toMPS2PinyinStringArray(char ch) //转换为注⾳符号拼⾳
static public String[] toYalePinyinStringArray(char ch) //转换为耶魯拼⾳
static public String[] toGwoyeuRomatzyhStringArray(char ch) //转换为国语罗马字
对于”重“的拼⾳转换,以上⽅法分别得到的结果是:
汉语拼⾳:[zhong4, chong2]
通⽤拼⾳:[jhong4, chong2]
威妥玛拼⾳:[chung4, ch`ung2]
注⾳符号拼⾳:[jung4, chung2]
耶魯拼⾳:[jung4, chung2]
国语罗马字:[jonq, chorng]
好了,有了上⾯的基础,我们可以封装⼀个⼯具类,⽤来将汉字转换成拼⾳,这⾥只使⽤了汉字拼⾳。
⾸先要将pinyin4j加⼊项⽬中,如果是maven项⽬,可以添加引⽤:
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.5.0</version>
</dependency>
⾮maven的可以直接将下载好的jar包放⼊classpath。
然后编写⼯具类 PinyinTool.java:
package com.lyz.pingyin;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.ption.BadHanyuPinyinOutputFormatCombination;
/**
* 汉字转化为拼⾳的⼯具类
* @author liuyazhuang
*
*/
public class PinyinTool {
HanyuPinyinOutputFormat format = null;
public static enum Type {
UPPERCASE, //全部⼤写
LOWERCASE, //全部⼩写
FIRSTUPPER //⾸字母⼤写
}
public PinyinTool(){
format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.UPPERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
}
public String toPinYin(String str) throws BadHanyuPinyinOutputFormatCombination{
return toPinYin(str, "", Type.UPPERCASE);
}
public String toPinYin(String str,String spera) throws BadHanyuPinyinOutputFormatCombination{
return toPinYin(str, spera, Type.UPPERCASE);
}
/**
* 将str转换成拼⾳,如果不是汉字或者没有对应的拼⾳,则不作转换
* 如:明天转换成 MINGTIAN
* @param str:要转化的汉字
* @param spera:转化结果的分割符
* @return
* @throws BadHanyuPinyinOutputFormatCombination
*/
public String toPinYin(String str, String spera, Type type) throws BadHanyuPinyinOutputFormatCombination { if(str == null || im().length()==0)
return "";
if(type == Type.UPPERCASE)
format.setCaseType(HanyuPinyinCaseType.UPPERCASE);
else
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
String py = "";
unicode汉字String temp = "";
String[] t;
for(int i=0;i<str.length();i++){
char c = str.charAt(i);
if((int)c <= 128)
py += c;
else{
t = HanyuPinyinStringArray(c, format);
if(t == null)
py += c;
else{
temp = t[0];
if(type == Type.FIRSTUPPER)
temp = t[0].toUpperCase().charAt(0)+temp.substring(1);
py += temp+(i==str.length()-1?"":spera);
}
}
}
}
im();
}
}
编写测试类PingyinToolTest
package com.st;
import com.lyz.pingyin.PinyinTool;
import com.lyz.pingyin.PinyinTool.Type;
/**
* 测试拼⾳转化结果
* @author liuyazhuang
*
*/
public class PingyinToolTest {
public static void main(String[] args) throws Exception{
PinyinTool tool = new PinyinTool();
System.out.println("刘亚壮的运⾏测试结果为====" + PinYin("刘亚壮", "", Type.LOWERCASE)); }
}
运⾏测试结果如下:
刘亚壮的运⾏测试结果为====liuyazhuang
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论