wangliuyang
2022-09-14 9d0d1b30e85f87a3a693bf2829f486a0b11f8d56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.mandi.common;
 
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;
 
/** 
 * @author mengly 
 * @version 创建时间:2015年9月1日 下午5:53:38 
 * 类说明 
 */
 
public class Pinyinmethod {
    public static String pinyins(String src)
    {
        if(src==null)
            return null;
        char[] cs=null;
        cs=src.toCharArray();
        String[] t2=new String[cs.length];
        HanyuPinyinOutputFormat hpof=new HanyuPinyinOutputFormat();
        hpof.setCaseType(HanyuPinyinCaseType.LOWERCASE);
        hpof.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
        hpof.setVCharType(HanyuPinyinVCharType.WITH_V);
        
        String t4="";
        int t0=cs.length;
        try{
            for (int i = 0; i < t0; i++) {
                if(Character.toString(cs[i]).matches("[\\u4E00-\\u9FA5]+"))
                {
                    t2 = PinyinHelper.toHanyuPinyinStringArray(cs[i],hpof);
                    t4+=t2[0];
                }else{
                    t4+=Character.toString(cs[i]);
                }
            }
        }catch(Exception e){
            e.printStackTrace();
        }
        
        return t4;
    }
    /**
     * 拼音首字母
     * @param src
     * @return 
     * @author mengly 
     * @version 创建时间:2015年9月1日 下午6:03:14
     */
    public static String pinyinhds(String src)
    {
        String convert = "";  
        for (int j = 0; j < src.length(); j++) {  
            char word = src.charAt(j);  
            // 提取汉字的首字母  
            String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(word);  
            if (pinyinArray != null) {  
                convert += pinyinArray[0].charAt(0);  
            } else {  
                convert += word;  
            }  
        }  
        return convert;
    }
}