汉字转拼音

阅读更多
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 P2P{
public static String getPingYin(String src){

    char[] t1 = null;
    t1=src.toCharArray();
    String[] t2 = new String[t1.length];
    HanyuPinyinOutputFormat t3 = new HanyuPinyinOutputFormat();
    t3.setCaseType(HanyuPinyinCaseType.LOWERCASE);
    t3.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
    t3.setVCharType(HanyuPinyinVCharType.WITH_V);
    String t4="";
    int t0=t1.length;
    try {
      for (int i=0;i 
 
省略号,自己加吧


在word里 回车键,是用^p来表示的,一般用它来替换
  • pinyin4j-2.5.0.zip (360.2 KB)
  • 下载次数: 23

你可能感兴趣的:(pinyin4j,java,pinyinhelper)