工具类封装实战(四)汉字拼音互相转换

举报
小鲍侃java 发表于 2021/09/10 01:18:38 2021/09/10
【摘要】 public class PhoneticTranscriptionUtil { /** * 获取当前所有字符转为全拼小写(数字 标点 字母转换为本身) * * @param chineseLanguage 要转成拼音的中文 */ @GetMapping("/toHanyuPinyin") ...

  
  1. public class PhoneticTranscriptionUtil {
  2. /**
  3. * 获取当前所有字符转为全拼小写(数字 标点 字母转换为本身)
  4. *
  5. * @param chineseLanguage 要转成拼音的中文
  6. */
  7. @GetMapping("/toHanyuPinyin")
  8. public Result<String> toHanyuPinyin(String chineseLanguage) {
  9. Result<String> result = new Result<String>();
  10. char[] cl_chars = chineseLanguage.trim().toCharArray();
  11. String hanyupinyin = "";
  12. HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
  13. // 输出拼音全部小写
  14. defaultFormat.setCaseType(LOWERCASE);
  15. // 不带声调
  16. defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
  17. defaultFormat.setVCharType(HanyuPinyinVCharType.WITH_V);
  18. try {
  19. for (int i = 0; i < cl_chars.length; i++) {
  20. // 如果字符是中文,则将中文转为汉语拼音
  21. if (String.valueOf(cl_chars[i]).matches("[\u4e00-\u9fa5]+")) {
  22. hanyupinyin += PinyinHelper.toHanyuPinyinStringArray(cl_chars[i], defaultFormat)[0];
  23. } else {
  24. // 如果字符不是中文,则不转换
  25. hanyupinyin += cl_chars[i];
  26. }
  27. }
  28. } catch (BadHanyuPinyinOutputFormatCombination e) {
  29. e.printStackTrace();
  30. }
  31. result.setData(hanyupinyin);
  32. return result;
  33. }
  34. /**
  35. * 取当前字符串所有的首字母 且输出为大写 (数字 标点 字母转换成本身)
  36. *
  37. * @param chineseLanguage
  38. * @return
  39. */
  40. @GetMapping("getFirstLettersUp")
  41. public Result<String> getFirstLettersUp(String chineseLanguage) {
  42. Result<String> result = new Result<String>();
  43. result.setData(getFirstLetters(chineseLanguage, UPPERCASE));
  44. return result;
  45. }
  46. /**
  47. * 取当前字符串所有的字符首字母 且输出为小写 (数字 符号 字母转换为本身)
  48. *
  49. * @param chineseLanguage
  50. * @return
  51. */
  52. @GetMapping("getFirstLettersLo")
  53. public Result<String> getFirstLettersLo(String chineseLanguage) {
  54. Result<String> result = new Result<String>();
  55. result.setData(getFirstLetters(chineseLanguage, LOWERCASE));
  56. return result;
  57. }
  58. /**
  59. * 取当前字符串所有的字符首字母 且输出为小写 (数字 字母转换为本身 符号去除)
  60. *
  61. * @param chineseLanguage
  62. * @return
  63. */
  64. @GetMapping("getPinyinString")
  65. public Result<String> getPinyinString(String chineseLanguage) {
  66. Result<String> result = new Result<String>();
  67. char[] cl_chars = chineseLanguage.trim().toCharArray();
  68. String hanyupinyin = "";
  69. HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
  70. // 输出拼音全部大写
  71. defaultFormat.setCaseType(LOWERCASE);
  72. // 不带声调
  73. defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
  74. try {
  75. for (int i = 0; i < cl_chars.length; i++) {
  76. String str = String.valueOf(cl_chars[i]);
  77. // 如果字符是中文,则将中文转为汉语拼音,并取第一个字母
  78. if (str.matches("[\u4e00-\u9fa5]+")) {
  79. hanyupinyin += PinyinHelper.toHanyuPinyinStringArray(cl_chars[i], defaultFormat)[0];
  80. }
  81. // 如果字符是数字,取数字
  82. else if (str.matches("[0-9]+")) {
  83. hanyupinyin += cl_chars[i];
  84. }
  85. // 如果字符是字母,取字母
  86. else if (str.matches("[a-zA-Z]+")) {
  87. hanyupinyin += cl_chars[i];
  88. }
  89. // 否则不转换
  90. else {
  91. }
  92. }
  93. } catch (BadHanyuPinyinOutputFormatCombination e) {
  94. e.printStackTrace();
  95. }
  96. result.setData(hanyupinyin);
  97. return result;
  98. }
  99. /**
  100. * 取字符串第一个汉字的第一个字符为大写(数字 字母 标点转换为本身)
  101. *
  102. * @return String
  103. * @throws
  104. */
  105. @GetMapping("getFirstLetter")
  106. public Result<String> getFirstLetter(String chineseLanguage) {
  107. Result<String> result = new Result<String>();
  108. char[] cl_chars = chineseLanguage.trim().toCharArray();
  109. String hanyupinyin = "";
  110. HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
  111. // 输出拼音全部大写
  112. defaultFormat.setCaseType(UPPERCASE);
  113. // 不带声调
  114. defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
  115. try {
  116. String str = String.valueOf(cl_chars[0]);
  117. // 如果字符是中文,则将中文转为汉语拼音,并取第一个字母
  118. if (str.matches("[\u4e00-\u9fa5]+")) {
  119. hanyupinyin = PinyinHelper.toHanyuPinyinStringArray(cl_chars[0], defaultFormat)[0].substring(0, 1);
  120. }
  121. // 如果字符是数字,取数字
  122. else if (str.matches("[0-9]+")) {
  123. hanyupinyin += cl_chars[0];
  124. }
  125. // 如果字符是字母,取字母
  126. else if (str.matches("[a-zA-Z]+")) {
  127. hanyupinyin += cl_chars[0];
  128. } else {// 否则不转换
  129. hanyupinyin += cl_chars[0];
  130. }
  131. } catch (BadHanyuPinyinOutputFormatCombination e) {
  132. e.printStackTrace();
  133. }
  134. result.setData(hanyupinyin);
  135. return result;
  136. }
  137. /**
  138. * 取字符串第一个汉字的第一个字符为小写(数字 字母 标点转换为本身)
  139. *
  140. * @return String
  141. * @throws
  142. */
  143. @GetMapping("getFirstLower")
  144. public Result<String> getFirstLower(String chineseLanguage) {
  145. Result<String> result = new Result<String>();
  146. char[] cl_chars = chineseLanguage.trim().toCharArray();
  147. String hanyupinyin = "";
  148. HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
  149. // 输出拼音全部小写
  150. defaultFormat.setCaseType(LOWERCASE);
  151. // 不带声调
  152. defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
  153. try {
  154. String str = String.valueOf(cl_chars[0]);
  155. // 如果字符是中文,则将中文转为汉语拼音,并取第一个字母
  156. if (str.matches("[\u4e00-\u9fa5]+")) {
  157. hanyupinyin = PinyinHelper.toHanyuPinyinStringArray(cl_chars[0], defaultFormat)[0].substring(0, 1);
  158. }
  159. // 如果字符是数字,取数字
  160. else if (str.matches("[0-9]+")) {
  161. hanyupinyin += cl_chars[0];
  162. }
  163. // 如果字符是字母,取字母
  164. else if (str.matches("[a-zA-Z]+")) {
  165. hanyupinyin += cl_chars[0];
  166. } else {// 否则不转换
  167. hanyupinyin += cl_chars[0];
  168. }
  169. } catch (BadHanyuPinyinOutputFormatCombination e) {
  170. e.printStackTrace();
  171. }
  172. result.setData(hanyupinyin);
  173. return result;
  174. }
  175. /**
  176. * getFirstLettersLo,getFirstLettersUp的实现方法
  177. *
  178. * @param chineseLanguage
  179. * @param caseType
  180. * @return
  181. */
  182. public String getFirstLetters(String chineseLanguage, HanyuPinyinCaseType caseType) {
  183. char[] cl_chars = chineseLanguage.trim().toCharArray();
  184. String hanyupinyin = "";
  185. HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
  186. // 输出拼音全部大写
  187. defaultFormat.setCaseType(caseType);
  188. // 不带声调
  189. defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
  190. try {
  191. for (int i = 0; i < cl_chars.length; i++) {
  192. String str = String.valueOf(cl_chars[i]);
  193. // 如果字符是中文,则将中文转为汉语拼音,并取第一个字母
  194. if (str.matches("[\u4e00-\u9fa5]+")) {
  195. hanyupinyin += PinyinHelper.toHanyuPinyinStringArray(cl_chars[i], defaultFormat)[0].substring(0, 1);
  196. }
  197. // 如果字符是数字,取数字
  198. else if (str.matches("[0-9]+")) {
  199. hanyupinyin += cl_chars[i];
  200. }
  201. // 如果字符是字母,取字母
  202. else if (str.matches("[a-zA-Z]+")) {
  203. hanyupinyin += cl_chars[i];
  204. }
  205. // 否则不转换
  206. else {
  207. // 如果是标点符号的话,带着
  208. hanyupinyin += cl_chars[i];
  209. }
  210. }
  211. } catch (BadHanyuPinyinOutputFormatCombination e) {
  212. e.printStackTrace();
  213. }
  214. return hanyupinyin;
  215. }
  216. }

文章来源: baocl.blog.csdn.net,作者:小黄鸡1992,版权归原作者所有,如需转载,请联系作者。

原文链接:baocl.blog.csdn.net/article/details/113336445

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。