拼音转换

一个强大的中文转换拼音的开源组件。

package com.unutrip.remoting.ws;

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;

/**
 * 
 * pinyin4j使用
 * 
 * @author longgangbai
 * 
 */
public class CNSpell {
 public static HanyuPinyinToneType[] toneTypes = new HanyuPinyinToneType[] {
   HanyuPinyinToneType.WITH_TONE_NUMBER,
   HanyuPinyinToneType.WITHOUT_TONE,
   HanyuPinyinToneType.WITH_TONE_MARK };
 public static HanyuPinyinVCharType[] vCharTypes = new HanyuPinyinVCharType[] {
   HanyuPinyinVCharType.WITH_U_AND_COLON, HanyuPinyinVCharType.WITH_V,
   HanyuPinyinVCharType.WITH_U_UNICODE };
 public static HanyuPinyinCaseType[] caseTypes = new HanyuPinyinCaseType[] {
   HanyuPinyinCaseType.LOWERCASE, HanyuPinyinCaseType.UPPERCASE };

 /**
  * 将中文字符转换为相应的数组
  * 
  * @param chineseCharacter
  * @param toneSelection
  * @param vcharSelection
  * @param caseSelection
  */
 private static void updateFormattedText(String chineseCharacter,
   HanyuPinyinToneType toneSelection,
   HanyuPinyinVCharType vcharSelection,
   HanyuPinyinCaseType caseSelection) {
  // 拼音格式化对象
  HanyuPinyinOutputFormat outputFormat = new HanyuPinyinOutputFormat();
  // 设置中文声调
  if (toneSelection != null) {
   if (toneTypes[0] == toneSelection) {
    outputFormat.setToneType(HanyuPinyinToneType.WITH_TONE_NUMBER);
   } else if (toneTypes[1] == toneSelection) {
    outputFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
   } else if (toneTypes[2] == toneSelection) {
    outputFormat.setToneType(HanyuPinyinToneType.WITH_TONE_MARK);
   }
  }
  // 设置特殊拼音的转换
  if (vcharSelection != null) {
   if (vCharTypes[0] == vcharSelection) {
    outputFormat
      .setVCharType(HanyuPinyinVCharType.WITH_U_AND_COLON);
   } else if (vCharTypes[1] == vcharSelection) {
    outputFormat.setVCharType(HanyuPinyinVCharType.WITH_V);
   } else if (vCharTypes[2] == vcharSelection) {
    outputFormat.setVCharType(HanyuPinyinVCharType.WITH_U_UNICODE);
   }
  }
  // 设置转换的拼音的大小写
  if (caseSelection != null) {
   if (caseTypes[0] == caseSelection) {
    outputFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
   } else if (caseTypes[1] == caseSelection) {
    outputFormat.setCaseType(HanyuPinyinCaseType.UPPERCASE);
   }
  }
  // 获取字符串
  char[] cnStr = chineseCharacter.toCharArray();
  for (char chineseChar : cnStr) {
   // 将字符转换为拼音数组
   String[] pinyinArray = null;
   try {
    pinyinArray = PinyinHelper.toHanyuPinyinStringArray(
      chineseChar, outputFormat);
   } catch (BadHanyuPinyinOutputFormatCombination e1) {
    e1.printStackTrace();
   }
   String outputString = concatPinyinStringArray(pinyinArray);
   System.out.println(outputString);
  }

 }

 /**
  * 测试中文转换拼音方法
  * 
  * @param args
  */
 public static void main(String[] args) {
  updateFormattedText("我是中国人!", HanyuPinyinToneType.WITH_TONE_MARK,
    HanyuPinyinVCharType.WITH_U_UNICODE,
    HanyuPinyinCaseType.UPPERCASE);
 }

 /**
  * 将转换的拼音数组转换为字符串
  * 
  * @param pinyinArray
  * @return
  */
 private static String concatPinyinStringArray(String[] pinyinArray) {
  StringBuffer pinyinStrBuf = new StringBuffer();

  if ((null != pinyinArray) && (pinyinArray.length > 0)) {
   for (int i = 0; i < pinyinArray.length; i++) {
    pinyinStrBuf.append(pinyinArray[i]);
    pinyinStrBuf.append(System.getProperty("line.separator"));
   }
  }
  String outputString = pinyinStrBuf.toString();
  return outputString;
 }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值