本文整理汇总了Java中net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat.setVCharType方法的典型用法代码示例。如果您正苦于以下问题:Java HanyuPinyinOutputFormat.setVCharType方法的具体用法?Java HanyuPinyinOutputFormat.setVCharType怎么用?Java HanyuPinyinOutputFormat.setVCharType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat
的用法示例。
在下文中一共展示了HanyuPinyinOutputFormat.setVCharType方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPinYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* 将汉字转换为全拼
*
* @param src 源汉字
* @return String pin yin
*/
public static String getPinYin(String src) {
char[] t1 = src.toCharArray();
String[] t2;
// 设置汉字拼音输出的格式
HanyuPinyinOutputFormat t3 = new HanyuPinyinOutputFormat();
t3.setCaseType(HanyuPinyinCaseType.LOWERCASE);
t3.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
t3.setVCharType(HanyuPinyinVCharType.WITH_V);
StringBuilder t4 = new StringBuilder();
try {
for (char aT1 : t1) {
// 判断是否为汉字字符
if (Character.toString(aT1).matches("[\\u4E00-\\u9FA5]+")) {
t2 = PinyinHelper.toHanyuPinyinStringArray(aT1, t3);// 将汉字的几种全拼都存到t2数组中
t4.append(t2[0]);// 取出该汉字全拼的第一种读音并连接到字符串t4后
} else {
// 如果不是汉字字符,直接取出字符并连接到字符串t4后
t4.append(Character.toString(aT1));
}
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
LOGGER.error("", e);
}
return t4.toString();
}
示例2: getPinYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* 将字符串中的中文转化为拼音,其他字符不变
*
* @param inputString
*
* @return
*/
public static String getPinYin(String inputString) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
char[] input = inputString.trim().toCharArray();
String output = "";
try {
for (int i = 0; i < input.length; i++) {
if (java.lang.Character.toString(input[i]).matches("[\\u4E00-\\u9FA5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(input[i], format);
output += temp[0];
} else
output += java.lang.Character.toString(input[i]);
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return output;
}
示例3: getPingYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
public static String getPingYin(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 (java.lang.Character.toString(t1[i]).matches("[\\u4E00-\\u9FA5]+")) {
t2 = PinyinHelper.toHanyuPinyinStringArray(t1[i], t3);
t4 += t2[0];
} else {
t4 += java.lang.Character.toString(t1[i]);
}
}
return t4;
} catch (BadHanyuPinyinOutputFormatCombination e1) {
e1.printStackTrace();
}
return t4;
}
示例4: getPinYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
public static String getPinYin(String strs) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE); // WITH_TONE_NUMBER/WITHOUT_TONE/WITH_TONE_MARK
format.setVCharType(HanyuPinyinVCharType.WITH_U_UNICODE);
char[] ch = strs.trim().toCharArray();
StringBuffer buffer = new StringBuffer("");
try {
for (int i = 0; i < ch.length; i++) {
// unicode,bytes应该也可以.
if (Character.toString(ch[i]).matches("[\u4e00-\u9fa5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(ch[i], format);
buffer.append(temp[0]);
//buffer.append(" ");
} else {
buffer.append(Character.toString(ch[i]));
}
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return buffer.toString();
}
示例5: getPinyin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
@Override
public String[] getPinyin(char ch) throws IllegalPinyinException {
try{
HanyuPinyinOutputFormat outputFormat = new HanyuPinyinOutputFormat();
outputFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
outputFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
outputFormat.setVCharType(HanyuPinyinVCharType.WITH_V);
if(ch>=32 && ch<=125){ //ASCII >=33 ASCII<=125的直接返回 ,ASCII码表:http://www.asciitable.com/
return new String[]{String.valueOf(ch)};
}
return ArrayUtils.distinct(PinyinHelper.toHanyuPinyinStringArray(ch, outputFormat));
} catch (BadHanyuPinyinOutputFormatCombination e) {
throw new IllegalPinyinException(e);
}
}
示例6: testToPinyin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
private void testToPinyin() throws IOException {
initNames();
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setVCharType(HanyuPinyinVCharType.WITH_V);
names.forEach(name -> {
String py = null;
try {
py = PinyinHelper.toHanYuPinyinString(name, format, "", true);
String hanPy = Han2Pinyin(name);
String hanPy2 = HanLP.convertToPinyinString(name, "", false);
if (!py.equals(hanPy)) {
System.out.println(String.format("%s: %s - %s - %s", name, py, hanPy, hanPy2));
}
// if (!py.equals(py.replaceAll("[\\u3400-\\u9FFF]", ""))) {
// System.out.println(py);
// }
} catch (BadHanyuPinyinOutputFormatCombination badHanyuPinyinOutputFormatCombination) {
badHanyuPinyinOutputFormatCombination.printStackTrace();
}
});
}
示例7: testIsChinese
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
@Test
public void testIsChinese() throws BadHanyuPinyinOutputFormatCombination {
char[] allChars = allChars();
final int allCharsLength = allChars.length;
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setCaseType(HanyuPinyinCaseType.UPPERCASE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
for (int i = 0; i < allCharsLength; i++) {
char targetChar = allChars[i];
String[] pinyins = PinyinHelper.toHanyuPinyinStringArray(targetChar, format);
if (pinyins != null && pinyins.length > 0) {
// is chinese
assertThat(Pinyin.isChinese(targetChar), is(true));
} else {
// not chinese
assertThat(Pinyin.isChinese(targetChar), is(false));
}
}
}
示例8: getPingYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* ���ַ����е�����ת��Ϊƴ��,�����ַ�����
* @param inputString
* @return
*/
public static String getPingYin(String inputString) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
char[] input = inputString.trim().toCharArray();
String output = "";
try {
for (char curchar : input) {
if (java.lang.Character.toString(curchar).matches(
"[\\u4E00-\\u9FA5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(
curchar, format);
output += temp[0];
} else
output += java.lang.Character.toString(curchar);
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return output;
}
示例9: getPingYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* 将字符串中的中文转化为拼音,其他字符不变
*
* @param inputString
* @return
*/
public static String getPingYin(String inputString) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
char[] input = inputString.trim().toCharArray();
String output = "";
try {
for (int i = 0; i < input.length; i++) {
if (java.lang.Character.toString(input[i]).matches("[\\u4E00-\\u9FA5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(input[i], format);
output += temp[0];
} else
output += java.lang.Character.toString(input[i]);
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return output;
}
示例10: initHanyuPinyin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
public static void initHanyuPinyin() {
format = new HanyuPinyinOutputFormat();
// UPPERCASE:大写 (ZHONG)
// LOWERCASE:小写 (zhong)
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
// WITHOUT_TONE:无音标 (zhong)
// WITH_TONE_NUMBER:1-4数字表示英标 (zhong4)
// WITH_TONE_MARK:直接用音标符(必须WITH_U_UNICODE否则异常) (zhòng)
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
// WITH_V:用v表示ü (nv)
// WITH_U_AND_COLON:用"u:"表示ü (nu:)
// WITH_U_UNICODE:直接用ü (nü)
format.setVCharType(HanyuPinyinVCharType.WITH_V);
}
示例11: getPingYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* 将字符串中的中文转化为拼音,其他字符不变
*
* @param inputString
* @return
*/
public static String getPingYin(String inputString) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
char[] input = inputString.trim().toCharArray();
String output = "";
try {
for (int i = 0; i < input.length; i++) {
if (java.lang.Character.toString(input[i]).matches("[\\u4E00-\\u9FA5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(input[i], format);
output += temp[0];
} else
output += java.lang.Character.toString(input[i]);
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return output;
}
示例12: getPingYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* ���ַ��е�����ת��Ϊƴ��,�����ַ��
*
* @param inputString
* @return
*/
public static String getPingYin(String inputString) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
char[] input = inputString.trim().toCharArray();
String output = "";
try {
for (int i = 0; i < input.length; i++) {
if (java.lang.Character.toString(input[i]).matches("[\\u4E00-\\u9FA5]+")) {
String[] temp = PinyinHelper.toHanyuPinyinStringArray(input[i], format);
output += temp[0];
} else
output += java.lang.Character.toString(input[i]);
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
return output;
}
示例13: getPinYin
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
private static String getPinYin(String words, boolean acronym) {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_U_UNICODE);
char[] chars = words.trim().toCharArray();
StringBuilder result = new StringBuilder();
try {
for (char c : chars) {
if (Character.toString(c).matches("[\u4e00-\u9fa5]+")) {
String[] pinyinStringArray = PinyinHelper.toHanyuPinyinStringArray(c, format);
if(acronym){
result.append(pinyinStringArray[0].charAt(0));
}else {
result.append(pinyinStringArray[0]);
}
}else{
return null;
}
}
} catch (Exception e) {
LOGGER.error("拼音标注失败", e);
}
return result.toString();
}
示例14: toPinYinUpperCase
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* 将汉字转换为全大写拼音
* @param src
* @return
* @throws Exception
*/
public static String toPinYinUpperCase(String src) throws Exception {
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
//全部大写
format.setCaseType(HanyuPinyinCaseType.UPPERCASE);
//不携带音标
format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
format.setVCharType(HanyuPinyinVCharType.WITH_U_AND_COLON);
try {
String s = PinyinHelper.toHanYuPinyinString(src, format, "", true);
return s;
} catch (BadHanyuPinyinOutputFormatCombination badHanyuPinyinOutputFormatCombination) {
throw new Exception("无法转换拼音");
}
}
示例15: processMessageString
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat; //导入方法依赖的package包/类
/**
* Sends alerts to the Pebble watch, as per the Pebble app's intents
* @param alert Alert which to send to the watch.
*/
private static String processMessageString(String originalMessage) {
// This is the traditional Pebble alert which does not show Unicode characters
HanyuPinyinOutputFormat format = new HanyuPinyinOutputFormat();
format.setCaseType(HanyuPinyinCaseType.LOWERCASE);
format.setToneType(HanyuPinyinToneType.WITH_TONE_NUMBER);
format.setVCharType(HanyuPinyinVCharType.WITH_V);
try {
// I know this is deprecated but there's no viable alternative...
return PinyinHelper.toHanyuPinyinString(originalMessage, format , "");
} catch (BadHanyuPinyinOutputFormatCombination e) {
Log.e("Pinyin", "Failed to convert pinyin");
}
return "";
}