有一个问题想问一下,在第一句不知道哪错了
public void readFile() throws IOException(){
FileInputStream file=new FileInputStream("read.txt");
int f;
while((f=file.read())!=-1){
System.out.println((char)f);
f=file.read();
}
“IOException()”,将后面的括号去掉