// 判断一个字符是否是中文
public static boolean isChinese(char c) {
return c >= 0x4E00 && c <= 0x9FA5;// 根据字节码判断
}
// 判断一个字符串是否含有中文
public static boolean isChinese(String str) {
if (str == null) return false;
for (char c : str.toCharArray()) {
if (isChinese(c)) return true;// 有一个中文字符就返回
}
return false;
}
可以将string里面的字符挨个抓取出来,然后同过字符判断
public class IsLetter {
public static void main(String[] args) {
while (true) {
Scanner scan = new Scanner(System.in);
String str = scan.nextLine();
for (int i = 0; i < str.length(); i++) {
if ((str.charAt(i) <= 'Z' && str.charAt(i) >= 'A')
|| (str.charAt(i) <= 'z' && str.charAt(i) >= 'a')) {
System.out.println(str.charAt(i) + "是字母");
} else {
System.out.println(str.charAt(i) + "不是字母");
}
}
}
}
}