import java.io.*;
public class nick3
{
public static void main(String[] args)
{
File fil = new File("Z:/nick/手游/catalogue.txt");
byte b[]="".getBytes();
try{
FileInputStream in = new FileInputStream("fil");
int n=0;
while((n=in.read(b,0,2)) != -1 ){
String str = new String(b,0,n);
System.out.println(str);
}
}
catch(IOException e){
System.out.println(e);
}
}
}
系统报错:fil 找不到指定的文件
可是我的
Z:\nick\手游
里的确是有catalogue.txt
的呀。为什么