本文整理汇总了Java中sun.net.idn.Punycode.encode方法的典型用法代码示例。如果您正苦于以下问题:Java Punycode.encode方法的具体用法?Java Punycode.encode怎么用?Java Punycode.encode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sun.net.idn.Punycode
的用法示例。
在下文中一共展示了Punycode.encode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testEncoding
import sun.net.idn.Punycode; //导入方法依赖的package包/类
public String testEncoding(String inputS) {
char input[] = new char[unicode_max_length];
int codept = 0;
char uplus[] = new char[2];
StringBuffer output;
int c;
/* Read the input code points: */
input_length = 0;
Scanner sc = new Scanner(inputS);
while (sc.hasNext()) { // need to stop at end of line
try {
String next = sc.next();
uplus[0] = next.charAt(0);
uplus[1] = next.charAt(1);
codept = Integer.parseInt(next.substring(2), 16);
} catch (Exception ex) {
fail(invalid_input, inputS);
}
if (uplus[1] != '+' || codept > Integer.MAX_VALUE) {
fail(invalid_input, inputS);
}
if (input_length == unicode_max_length) fail(too_big, inputS);
if (uplus[0] == 'u') case_flags[input_length] = false;
else if (uplus[0] == 'U') case_flags[input_length] = true;
else fail(invalid_input, inputS);
input[input_length++] = (char)codept;
}
/* Encode: */
output_length[0] = ace_max_length;
try {
output = Punycode.encode((new StringBuffer()).append(input, 0, input_length), case_flags);
} catch (Exception e) {
fail(invalid_input, inputS);
// never reach here, just to make compiler happy
return null;
}
testCount++;
return output.toString();
}