如何在java中获取从文件中读取的特殊字符的指示

时间:2014-08-08 16:06:46

标签: java io inputstream

在java中我正在编写一个代码,我在其中使用DataInputStream.read()方法读取文本文件,我想获得指示从文件中读取的字符是否不是数字(0,1,2, ...)或字母(a,b,c,......)。请帮助我如何做到这一点?

1 个答案:

答案 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
}