在java中我正在编写一个代码,我在其中使用DataInputStream.read()方法读取文本文件,我想获得指示从文件中读取的字符是否不是数字(0,1,2, ...)或字母(a,b,c,......)。请帮助我如何做到这一点?
答案 0 :(得分:0)
试试这个:
char c = //read a char
if( c >= 'a' && c <= 'z'){
//is a lower case alphabet
}
else if (c >= '0' && c <= '9'){
// is a number
}else{
//is something else
}