19

在 JavaScript 中,.charCodeAt()在您传递给函数的字符串中的某个点返回一个 Unicode 值。如果我只有一个字符,我可以使用下面的代码来获取 Java 中的 Unicode 值。

public int charCodeAt(char c) {
     int x;
     return x = (int) c;
}

如果我在 Java 中有一个字符串,我将如何获取字符串中单个字符的 Unicode 值,就像.charCodeAt()函数对 JavaScript 所做的那样?

4

4 回答 4

20

Java也有同样的方法:Character.codePointAt(CharSequence seq, int index);

String str = "Hello World";
int codePointAt0 = Character.codePointAt(str, 0);
于 2012-12-31T17:26:38.817 回答
0

试试这个:

public int charCodeAt(String string, int index) {
    return (int) string.charAt(index);
}
于 2012-12-31T17:23:04.140 回答
0

有一种方法可以过滤您需要的特殊字符。只需检查ASCII

希望能帮助到你

public class main {

public  static void main(String args[]) {
    String str = args[0];
    String bstr = "";
    String[] codePointAt = new String[str.length()];

    if (str != "") 
    {
        for (int j = 0; j < str.length(); j++) 
        {
            int charactercode=Character.codePointAt(str, j);
            //CHECK on ASCII TABLE THE SPECIAL CHARS YOU NEED
            if(     (charactercode>31 && charactercode<48) ||
                    (charactercode>57 && charactercode<65) ||
                    (charactercode>90 && charactercode<97) ||
                    (charactercode>127)

                )
            {
                codePointAt[ j] ="&"+String.valueOf(charactercode)+";";
            }
            else
            {
                codePointAt[ j] =  String.valueOf( str.charAt(j) );
            }
        }

        for (int j = 0; j < codePointAt.length; j++) 
        {
            System.out.println("CODE "+j+" ->"+ codePointAt[j]);
        }

    }   
 }

}

输出

call with ("TRY./&asda")

CODE 0 ->T
CODE 1 ->R
CODE 2 ->Y
CODE 3 ->&46;
CODE 4 ->&47;
CODE 5 ->&38;
CODE 6 ->a
CODE 7 ->s
CODE 8 ->d
CODE 9 ->a
于 2015-04-15T12:55:21.120 回答
-2
short unicode = string.charAt(index);
于 2012-12-31T17:24:59.023 回答