爲什麼我在下面的程序中得到java.io.FileNotFoundException?爲什麼我在這個程序中得到java.io.FileNotFoundException?
import java.io.*;
class FisDemo {
public static void main(String[] args)throws IOException{
FileInputStream fis=new FileInputStream("abc.txt");
/* Here we are accessing file abc.txt statically. i.e abc.txt must exist in current class directory */
int data;
while((data=fis.read())!=-1){
System.out.println((char)data);
// here we are casting, because return type of read() is int
}
}
}
在一個問題中發佈兩個完全不相關的問題是一個糟糕的主意。 –