java 拼音识别_JAVA实现汉字转拼音

packageedu.ws;importcom.github.stuxuhai.jpinyin.ChineseHelper;importcom.github.stuxuhai.jpinyin.PinyinFormat;importcom.github.stuxuhai.jpinyin.PinyinHelper;public classChangeToPinYinJP {/*** 转换为有声调的拼音字符串

*

*@parampinYinStr 汉字

*@return有声调的拼音字符串*/

publicString changeToMarkPinYin(String pinYinStr) {

String tempStr= null;try{

tempStr= PinyinHelper.convertToPinyinString(pinYinStr, " ", PinyinFormat.WITH_TONE_MARK);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}/*** 转换为数字声调字符串

*

*@parampinYinStr 需转换的汉字

*@return转换完成的拼音字符串*/

publicString changeToNumberPinYin(String pinYinStr) {

String tempStr= null;try{

tempStr= PinyinHelper.convertToPinyinString(pinYinStr, " ", PinyinFormat.WITH_TONE_NUMBER);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}/*** 转换为不带音调的拼音字符串

*

*@parampinYinStr 需转换的汉字

*@return拼音字符串*/

publicString changeToTonePinYin(String pinYinStr) {

String tempStr= null;try{

tempStr= PinyinHelper.convertToPinyinString(pinYinStr, " ", PinyinFormat.WITHOUT_TONE);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}/*** 转换为每个汉字对应拼音首字母字符串

*

*@parampinYinStr 需转换的汉字

*@return拼音字符串*/

publicString changeToGetShortPinYin(String pinYinStr) {

String tempStr= null;try{

tempStr=PinyinHelper.getShortPinyin(pinYinStr);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}/*** 检查汉字是否为多音字

*

*@parampinYinStr 需检查的汉字

*@returntrue 多音字,false 不是多音字*/

public boolean checkPinYin(charpinYinStr) {boolean check = false;try{

check=PinyinHelper.hasMultiPinyin(pinYinStr);

}catch(Exception e) {

e.printStackTrace();

}returncheck;

}/*** 简体转换为繁体

*

*@parampinYinStr

*@return

*/

publicString changeToTraditional(String pinYinStr) {

String tempStr= null;try{

tempStr=ChineseHelper.convertToTraditionalChinese(pinYinStr);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}/*** 繁体转换为简体

*

*@parampinYinSt

*@return

*/

publicString changeToSimplified(String pinYinSt) {

String tempStr= null;try{

tempStr=ChineseHelper.convertToSimplifiedChinese(pinYinSt);

}catch(Exception e) {

e.printStackTrace();

}returntempStr;

}//public static void main(String[] args) {//String str = "重慶 most input";//ChangeToPinYinJP jp = new ChangeToPinYinJP();//System.out.println(jp.changeToSimplified(str));//System.out.println(jp.checkPinYin('重'));//}

}

jpinyin - A opensource java library for converting chinese to pinyin JPinyin是一个汉字拼音Java开源类库,在PinYin4j的功能基础上做了一些改进。 【JPinyin主要特性】 1、准确、完善的字库; Unicode编码从4E00-9FA5范围及3007(〇)的20903个汉字中,JPinyin能换除46个异体字(异体字不存在标准拼音)之外的所有汉字; 2、拼音换速度快; 经测试,换Unicode编码从4E00-9FA5范围的20902个汉字,JPinyin耗时约100毫秒。 3、多拼音格式输出支持; JPinyin支持多种拼音输出格式:带音标、不带音标、数字表示音标以及拼音首字母输出格式; 4、常见多音字识别; JPinyin支持常见多音字的识别,其中包括词组、成语、地名等; 5、简繁体中文换; 6、支持添加用户自定义字典; Maven com.github.stuxuhai jpinyin 1.1.8 Gradle Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories: allprojects { repositories { ... maven { url "https://jitpack.io" } } } Step 2. Add the dependency dependencies { compile 'com.github.SilenceDut:jpinyin:v1.0' } Usage String str = "你好世界"; PinyinHelper.convertToPinyinString(str, ",", PinyinFormat.WITH_TONE_MARK); // nǐ,hǎo,shì,jiè PinyinHelper.convertToPinyinString(str, ",", PinyinFormat.WITH_TONE_NUMBER); // ni3,hao3,shi4,jie4 PinyinHelper.convertToPinyinString(str, ",", PinyinFormat.WITHOUT_TONE); // ni,hao,shi,jie PinyinHelper.getShortPinyin(str); // nhsj PinyinHelper.addPinyinDict("user.dict"); // 添加用户自定义字典
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值