博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 汉字转拼音 PinYin4j
阅读量:6992 次
发布时间:2019-06-27

本文共 2540 字,大约阅读时间需要 8 分钟。

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 PinYin4j {    /**     * 将汉字转换为全拼     *      * @param src     * @return String     */    public static String getPinYin(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 < 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]);                }            }        } catch (BadHanyuPinyinOutputFormatCombination e) {            e.printStackTrace();        }        return t4;    }    /**     * 提取每个汉字的首字母     *      * @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;    }    /**     * 将字符串转换成ASCII码     *      * @param cnStr     * @return String     */    public static String getCnASCII(String cnStr) {        final 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();    }}

 

转载于:https://www.cnblogs.com/light-zhang/p/9036132.html

你可能感兴趣的文章
常用类型转换 一.常用int和string类型转换
查看>>
Ext Js简单Grid分页及选择器的使用
查看>>
slice 定义和用法
查看>>
分类游戏 结构体
查看>>
导出、恢复、上传镜像
查看>>
java第一个程序提示找不到符号-System.out.printIn
查看>>
LineageOS源码定制手机系统
查看>>
flask怎样获取authorization
查看>>
Python3 Selenium自动化web测试 ==> 第六节 WebDriver高级应用 -- 操作web页面的滚动条...
查看>>
HTMl5的sessionStorage和localStorage的一些区别
查看>>
Find Minimum in Rotated Sorted Array
查看>>
Android Studio模拟器的问题及解决办法
查看>>
实现Android ListView 自动加载更多内容
查看>>
高淇Struts2.0教程之视频笔记(6)
查看>>
python二进制读写文件
查看>>
sql server 高可用性技术总结
查看>>
近阶段学习总结(EasyUI的使用)
查看>>
第二次作业
查看>>
JSTL 运算符汇总
查看>>
IOS UIlabel 、UIButton添加下划线
查看>>