5

如何从字符中检查 J2ME 中的字母

在 J2SE 中,我们可以使用 Character.isLetter(c)

我想用这个: if (Character.isLetter(c) && Character.isUpperCase(c)){} 还有else if(Character.isSpace(c))

IN JAVA MOBILE Platform 有什么办法使用吗??

4

1 回答 1

6

看到你不能使用Character.isLetter(c),我只是在功能上模仿它。我会通过使用字符的ASCII 值将字符视为“数字”来做到这一点。

public static boolean isLetter(char c) {
    return (c > 64 && c < 91) || (c > 96 && c < 123);
}

//Not necessary but included anyways
public static boolean isUpperCase(char c) {
    return c > 64 && c < 91;
}

public static boolean isSpace(char c) {
    //Accounts for spaces and other "space-like" characters
    return c == 32 || c == 12 || c == 13 || c == 14;
}

编辑:感谢@Nate 的建议/更正

于 2013-02-03T06:04:33.497 回答