Java中的ChrW和AscW等效(使用Android SDK)

时间:2011-05-22 15:08:06

标签: java android equivalent

我需要返回Ascii代码(实际上是Unicode数字代码)的函数,以及将该代码转换为Unicode字符代码。它们是.NET中的ChrW和AscW。例如:AscW(“A”)为65,ChrW(65)为A.

感谢。

1 个答案:

答案 0 :(得分:3)

实际上,这些来自VB.NET,而不是.NET Framework。

在Java中,char 排序是一个整数类型。您可以将其转换为int并返回:

String s = "abc";
char a = s.charAt(0);
int a_codepoint = (int)a;

char x = (char)120;