汉字转拼音
Salted Fish 2024/7/17 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;
/**
* @description:汉字转拼英
* @Version:
*/
public class PinyinUtil {
/**
* 将汉字转换为全拼
*
* @param text 文本
* @param separator 分隔符
* @return {@link String}
*/
public static String getPinyin(String text, String separator) {
char[] chars = text.toCharArray();
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
// 设置大小写
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
// 设置声调表示方法
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
// 设置字母u表示方法
format.setVCharType(HanyuPinyinVCharType.WITH_V);
String[] s;
String rs = "";
try {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < chars.length; i++) {
// 判断是否为汉字字符
if (String.valueOf(chars[i]).matches("[\\u4E00-\\u9FA5]+")) {
s = PinyinHelper.toHanyuPinyinStringArray(chars[i], format);
if (s != null) {
sb.append(s[0]).append(separator);
continue;
}
}
sb.append(chars[i]);
if ((i + 1 >= chars.length) || String.valueOf(chars[i + 1]).matches("[\\u4E00-\\u9FA5]+")) {
sb.append(separator);
}
}
if (separator.length() > 0) {
rs = sb.substring(0, sb.length() - 1);
} else {
rs = sb.substring(0, sb.length());
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return rs;
}
/**
* 获取汉字首字母
*
* @param text 文本
* @return {@link String}
*/
public static String getPinyinInitials(String text) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < text.length(); i++) {
char ch = text.charAt(i);
String[] s = PinyinHelper.toHanyuPinyinStringArray(ch);
if (s != null) {
sb.append(s[0].charAt(0));
} else {
sb.append(ch);
}
}
return sb.toString();
}
}
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
75
76
77
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
75
76
77
依赖:
<!--中文转拼音-->
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.5.0</version>
</dependency>
1
2
3
4
5
6
2
3
4
5
6