pinyin4j的使用例子:将中文转换成拼音

在全文索引的项目中需要在用户输入拼音时,也能检索到相应的文档

 

将中文转换为英文的例子:原文地址http://www.360doc.com/content/11/0407/11/987036_107780458.shtml

 

package com.jetsen.test;

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 TransferToPinYin {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		
		try {
			String pinyin = getPinYin("旅*heihei*游");
			System.out.println(pinyin);//输出  lv*heihei*you
		} catch (BadHanyuPinyinOutputFormatCombination e) {
			e.printStackTrace();
		}
		
		

	}

	
	
	public static String getPinYin(String zhongwen) throws BadHanyuPinyinOutputFormatCombination{
		//用于存放转换后的拼音字符串
		String pinyin = "";
		//将中文字符串分成中文字符数组(如“中国”  转换成  ‘中’ ‘国’)
		char[] chars = zhongwen.toCharArray();
		String[] tmppinyin;
		for(int i=0; i<chars.length; i++){
			
			//当转换的不是中文字符时,返回null
			tmppinyin = PinyinHelper.toHanyuPinyinStringArray(chars[i],getDefaultOutputFormat());
			
			if(tmppinyin != null){
				pinyin += tmppinyin[0];
			}else{
				pinyin += chars[i];				
			}			
		}
		
		return pinyin;
	}



	private static HanyuPinyinOutputFormat getDefaultOutputFormat() {
		HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
		
		format.setCaseType(HanyuPinyinCaseType.LOWERCASE);//小写
		format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);//没有音调数字
		format.setVCharType(HanyuPinyinVCharType.WITH_V);
		return format;
	}
	
	
	
	
}


 

你可能感兴趣的:(pinyin4j的使用例子:将中文转换成拼音)