介绍
汉字和拼音转换工具类
方法
getPingYin(String inputString): String
将字符串中的中文转化为拼音,其他字符不变
- 参数说明:Object
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
inputString | String | 是 | 需要转换的字符串 |
返回数据说明:String
拼音字符串
示例:
System.out.println(PingYinUtil.getInstance().getPingYin("中国111"));
注意
getFirstSpell(String chinese) : Stirng
获取汉字串拼音首字母,英文字符不变
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
chinese | String | 是 | 汉字串 |
返回数据说明:Stirng
汉语拼音首字母
deptCode="DEPT_"+PingYinUtil.getInstance().getFirstSpell(deptCode).toUpperCase();
- 注意
getFullSpell(String chinese) : Stirng
获取汉字串拼音,英文字符不变
- 参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
chinese | String | 是 | 汉字串 |
返回数据说明:Stirng
汉语拼音
userCode=PingYinUtil.getInstance().getFullSpell(userName);
- 注意
最后编辑: 肖海杰 文档更新时间: 2023-04-26 08:43 作者:刘利军