为大家分享一个汉字转拼音的小工具

前提是导包hanyu4j

pom.xml引入

            com.belerweb
            pinyin4j
            2.5.0

@Test
    public void test() throws BadHanyuPinyinOutputFormatCombination {
        //定义一个字符串
        String s = "这是测试字符串";

        //转成字符数组
        char[] chars = s.toCharArray();

        //导入pinyin4j,并设置属性
        HanyuPinyinOutputFormat t3 = new HanyuPinyinOutputFormat();
        t3.setCaseType(HanyuPinyinCaseType.LOWERCASE);
        t3.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
        t3.setVCharType(HanyuPinyinVCharType.WITH_V);


        for(Integer i =0;i

控制台输出的是

为大家分享一个汉字转拼音的小工具_第1张图片
Paste_Image.png

不用谢!

你可能感兴趣的:(为大家分享一个汉字转拼音的小工具)