Java实现的汉语拼音工具类完整实例

2025-05-29 0 78

本文实例讲述了Java实现的汉语拼音工具类。分享给大家供大家参考,具体如下:

?

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

69

70

71

72

73

74
package test;

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;

/**

* 汉语拼音工具类

* Created by charlin on 2017/9/3.

*/

public class PingYinUtil {

/**

* 获得所有拼音字母

* @param args

* @return

*/

public static String getAllLeter(String args) {

String result = "";

char[] charArray = args.toCharArray();

String[] strArr = new String[charArray.length];

HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();

format.setCaseType(HanyuPinyinCaseType.LOWERCASE);

format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);

format.setVCharType(HanyuPinyinVCharType.WITH_V);

int len = charArray.length;

for (int i = 0; i <len ; i++) {

try {

strArr = PinyinHelper.toHanyuPinyinStringArray(charArray[i], format);

if (strArr == null){

result += charArray[i];

}else {

result += strArr[0];

}

} catch (BadHanyuPinyinOutputFormatCombination e) {

e.printStackTrace();

}

}

return result;

}

/**

* 获得每个汉字的首字母

* @param args

* @return

*/

public static String getFirstLeter(String args) {

String result = "";

char[] charArray = args.toCharArray();

String[] strArr = new String[charArray.length];

HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();

format.setCaseType(HanyuPinyinCaseType.LOWERCASE);

format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);

format.setVCharType(HanyuPinyinVCharType.WITH_V);

int len = charArray.length;

for (int i = 0; i <len ; i++) {

try {

strArr = PinyinHelper.toHanyuPinyinStringArray(charArray[i], format);

if (strArr == null){

result += charArray[i];

}else {

result += strArr[0].substring(0,1);

}

} catch (BadHanyuPinyinOutputFormatCombination e) {

e.printStackTrace();

}

}

return result;

}

public static void main(String[] args) {

System.out.println("快网idc测试结果:");

System.out.println("getAllLeter==" + getAllLeter("你好啊"));

System.out.println("getFirstLeter==" + getFirstLeter("你好啊"));

}

}

运行结果:

Java实现的汉语拼音工具类完整实例

附:本例中使用到的net.sourceforge.pinyin4j包可点击此处本站下载pinyin4j的jar包文件

希望本文所述对大家java程序设计有所帮助。

原文链接:http://blog.csdn.net/lovoo/article/details/77887270

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 Java实现的汉语拼音工具类完整实例 https://www.kuaiidc.com/114081.html

相关文章

发表评论
暂无评论