码迷,mamicode.com
首页 > 其他好文 > 详细

获取中文的首字母demo

时间:2017-08-13 16:21:04      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:array   net   convert   首字母   null   title   for   get   pinyin4j   

import net.sourceforge.pinyin4j.PinyinHelper;
/**
	 * 
	 * @Title: getPinYinHeadChar
	 * @Description: TODO 获取中文的首字母
	 * @param str 传入的中文参数
	 * @return
	
	 * @return: String 
	 */
	public static String getPinYinHeadChar(String str) {
    String convert = "";
        for (int j = 0; j < str.length(); j++) {
            char word = str.charAt(j);
            String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(word);
            if (pinyinArray != null) {
                convert += pinyinArray[0].charAt(0);
            } else {
                convert += word;
            }
        }
        return convert;
    }

  测试:

System.out.println(PinYinUtil.getPinYinHeadChar("我比较"));===》wbj

获取中文的首字母demo

标签:array   net   convert   首字母   null   title   for   get   pinyin4j   

原文地址:http://www.cnblogs.com/ipetergo/p/7353570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!