java-Kanji converted into Hanyu Pinyin (Pinyin4j-2.5.0-sources.jar)

Source: Internet
Author: User

In the project, Hanyu Pinyin is often used, especially the conversion of Chinese characters into Hanyu Pinyin. A common tool is given below.

You must add the Pinyin4j-2.5.0-sources.jar package when you use the program.

ImportNet.sourceforge.pinyin4j.PinyinHelper;ImportNet.sourceforge.pinyin4j.format.HanyuPinyinCaseType;ImportNet.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;ImportNet.sourceforge.pinyin4j.format.HanyuPinyinToneType;ImportNet.sourceforge.pinyin4j.format.HanyuPinyinVCharType;Importnet.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination; Public classtopinyinstring {//convert Chinese characters to full spell     Public Staticstring Getpingyin (string src) {Char[] T1 =NULL; T1=Src.tochararray (); string[] T2=NewString[t1.length]; Hanyupinyinoutputformat T3=NewHanyupinyinoutputformat ();     T3.setcasetype (hanyupinyincasetype.lowercase); //return lowercaseT3.settonetype (Hanyupinyintonetype.without_tone);//return to no toneT3.setvchartype (HANYUPINYINVCHARTYPE.WITH_V);//the character is represented by VString T4 = ""; intT0 =t1.length; Try {             for(inti = 0; i < t0; i++) {                //determine if the character is Chinese characters                if(Java.lang.Character.toString (T1[i]). Matches ("[\\u4e00-\\u9fa5]+")) {//regular expressions that match at least one kanjit2 =Pinyinhelper.tohanyupinyinstringarray (t1[i], T3); T4+ = T2[0]; } ElseT4+=java.lang.Character.toString (T1[i]); }            returnT4; } Catch(badhanyupinyinoutputformatcombination E1) {e1.printstacktrace (); }        returnT4; }    //returns the first letter of Chinese     Public Staticstring Getpinyinheadchar (String str) {string convert= "";  for(intj = 0; J < Str.length (); J + +) {            CharWord =Str.charat (j); String[] Pinyinarray=Pinyinhelper.tohanyupinyinstringarray (word); if(Pinyinarray! =NULL) {convert+ = Pinyinarray[0].charat (0); } Else{convert+=Word; }        }        returnconvert; }    //To transfer a string to an ASCII code     Public Staticstring Getcnascii (String cnstr) {StringBuffer strbuf=NewStringBuffer (); byte[] BGBK =cnstr.getbytes ();  for(inti = 0; i < bgbk.length; i++) {strbuf.append (integer.tohexstring (bgbk[i)& 0xFF)); }        returnstrbuf.tostring (); }     Public Static voidMain (string[] args) {

System.out.println ("Kanji to Hanyu Pinyin:" +getpingyin ("Beautiful Zhongguo, My Hometown"));
SYSTEM.OUT.PRINTLN ("The initials of Chinese characters:" +getpinyinheadchar ("Beautiful Zhongguo, My Hometown"));
System.out.println ("Kanji to ASCII value:" +getcnascii ("Beautiful Zhongguo, My Hometown"));

    }}

As shown in the code above, the result of Run as prints is as follows:

java-Kanji converted into Hanyu Pinyin (Pinyin4j-2.5.0-sources.jar)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.