依赖jar包
pinyin4j-2.5.0.jar
Java代码
package net.mjtabu.jfinal.utils;
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;
/**
* @author 马家立
* @version 创建时间:2019年12月6日上午10:19:34
* @Description: 将汉字转行为拼音工具类
*/
public class PinyinUtils {
/**
* @Title:getPinYin
* @author:马家立
* @date:2019年12月6日 上午10:32:22
* @Description: 将汉字转换为全拼
* @param src--待转换的字符串
* @return String
* @throws BadHanyuPinyinOutputFormatCombination
*/
public static String getPinYin(String src) throws BadHanyuPinyinOutputFormatCombination {
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;
for (int i = 0; i < t0; i++) {
// 判断是否为汉字字符
if (Character.toString(t1[i]).matches("[\\u4E00-\\u9FA5]+")) {
t2 = PinyinHelper.toHanyuPinyinStringArray(t1[i], t3);// 将汉字的几种全拼都存到t2数组中
t4 += t2[0];// 取出该汉字全拼的第一种读音并连接到字符串t4后
} else {
// 如果不是汉字字符,直接取出字符并连接到字符串t4后
t4 += Character.toString(t1[i]);
}
}
return t4;
}
/**
* @Title:getPinYinHeadChar
* @author:马家立
* @date:2019年12月6日 上午10:32:02
* @Description: 提取每个汉字的首字母
* @param str--待提取的字符串
* @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;
}
/**
* @Title:getCnASCII
* @author:马家立
* @date:2019年12月6日 上午10:31:16
* @Description: 将字符串转换成ASCII码
* @param cnStr--待转换的字符串
* @return String
*/
public static String getCnASCII(String cnStr) {
StringBuffer strBuf = new StringBuffer();
// 将字符串转换成字节序列
byte[] bGBK = cnStr.getBytes();
for (int i = 0; i < bGBK.length; i++) {
// 将每个字符转换成ASCII码
strBuf.append(Integer.toHexString(bGBK[i] & 0xff) + " ");
}
return strBuf.toString();
}
public static void main(String[] args) {
try {
System.out.println("提取每个汉字的首字母:" + getPinYinHeadChar("语文"));
System.out.println("将汉字转换为全拼:" + getPinYin("语文"));
System.out.println("将字符串转换成ASCII码:" + getCnASCII("语文"));
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
}
}