程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java完成將漢字轉化為漢語拼音的辦法

Java完成將漢字轉化為漢語拼音的辦法

編輯:關於JAVA

Java完成將漢字轉化為漢語拼音的辦法。本站提示廣大學習愛好者:(Java完成將漢字轉化為漢語拼音的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是Java完成將漢字轉化為漢語拼音的辦法正文


本文實例講述了Java完成將漢字轉化為漢語拼音的辦法。分享給年夜家供年夜家參考,詳細以下:

網上亂轉,有時看到一個很成心思的小對象,名字叫pinyin4j,可以把漢字轉換為漢語拼音,應用他的話再合營上lucene、中文分詞便可以做出相似谷歌那種輸出漢語拼音停止全文檢索的功效了。完成的代碼以下

package pinyin4j;
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;
public class pinyin4jTest {
  public static void main(String argsp[]) {
    try {
      String output = pinyin4jTest.CNToPinyin("你和你好", null);
      System.out.println(output);
    } catch (BadHanyuPinyinOutputFormatCombination e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
  }
  /**
   * @parm inputCN 輸出的中文字符串
   * @parm seg 輸入漢語拼音時的分隔符
   * 
   * HanyuPinyinOutputFormat供給了幾種輸入形式
   * HanyuPinyinCaseType:設定輸出的成果是年夜寫英文照樣小寫英文 LOWERCASE :小寫 UPPERCASE :年夜寫
   * HanyuPinyinToneType:輸入能否注解聲調和重音 WITH_TONE_NUMBER:標明聲調 如YE1 1-4表現 1-4聲
   * WITHOUT_TONE:不顯示聲調符 HanyuPinyinVCharType :輸入要用何種的拼音編碼
   */
  public static String CNToPinyin(String inputCN, String seg)
      throws BadHanyuPinyinOutputFormatCombination {
    char[] inputArray = inputCN.toCharArray();
    if (seg == null)
      seg = " ";
    HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
    format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
    format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
    format.setVCharType(HanyuPinyinVCharType.WITH_V);
    String output = "";
    String[] temp = new String[10];
    for (int i = 0; i < inputArray.length; i++) {
      temp = PinyinHelper.toHanyuPinyinStringArray(inputArray[i], format);
      //若輸出的漢字為多音字則會將分歧的讀音順次放入temp[]中,若不是多音字則只要temp[0]中有值
      for (int j = 0; j < temp.length; j++) {
        output += temp[j] + seg;
      }
    }
    return output;
  }
}

願望本文所述對年夜家Java法式設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved