田同学
2017-05-07 10:37
public class IsrAndOswDemo {
public static void main(String[] args)throws IOException {
FileInputStream in = new FileInputStream("e:\\java\\wenzi.txt");
InputStreamReader isr = new InputStreamReader(in);//默认项目的编码
int c;
while((c=isr.read())!=-1){
System.out.print(c);
}
}
请问大神,这段代码里面将int c改为char c为什么会报错,c=isr.read()这里返回的不是char类型的吗
char是单字符,int是整型 int和char根本不是一个性质
isr.read()返回的是int类型数据
文件传输基础——Java IO流
133754 学习 · 1030 问题
相似问题