In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
How to meet the needs of pinyin4j Chinese to Pinyin, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.
Introduce dependency
/ / https://mvnrepository.com/artifact/com.belerweb/pinyin4j / / Chinese characters to Pinyin compile group: 'com.belerweb', name:' pinyin4j', version: '2.5.1'
Write the tool class of translating Chinese into English
Import lombok.extern.slf4j.Slf4j;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.HanyuPinyinVCharType;import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination @ Slf4jpublic class PinYinUtil {/ * Chinese characters to Pinyin * * / public static String getPinYin (String str) {HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat (); format.setCaseType (HanyuPinyinCaseType.LOWERCASE); format.setToneType (HanyuPinyinToneType.WITHOUT_TONE); format.setVCharType (HanyuPinyinVCharType.WITH_V); String output = "" If (str! = null & & str.length () > 0 & &! "null" .equals (str)) {char [] input = str.trim () .toCharArray (); try {for (int I = 0; I < input.length) If (java.lang.Character.toString (input [I]) .matches ("[\\ u4E00 -\\ u9FA5] +")) {String [] temp = PinyinHelper.toHanyuPinyinStringArray ( Input [i] Format) Output + = temp [0];} else output + = java.lang.Character.toString (input [I]) } catch (BadHanyuPinyinOutputFormatCombination e) {log.error ("pinyinUtils", e);}} else {return "*";} return output }} is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.