转自:http://blog.csdn.net/bug_moving/article/details/52740127
使用isDigit判断是否为数字
public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
使用isLetter判断是否为字母
public class Test{
public static void main(String args[]){
System.out.println( Character.isLetter('c'));
System.out.println( Character.isLetter('5'));
}
}
- 1
- 2
- 3
- 4
- 5
- 6
产生的结果:
true
false