public static FileReader getpath( )throws IOException//获取地址函数,创建对象
{
InputStreamReader ir=new InputStreamReader (System.in);
char[] ch=new char[200];
int lang=0;
leng=ir.read(ch)
String st=new String(ch,0,leng);
FileReader fr=new FileReader(st);
}
上面的代码要实现的目标是,从控制台输入一个文本有效地址如(D:\1.txt),建立一个FileReader对象,从而实现从有效地址如(D:\1.txt)内读取数据。我运行多次(如输入D:\1.txt,D:\\1.txt)均得到
Exception in thread "main" java.io.FileNotFoundException: D:\1.txt (系统找不到指定的文件。)
请各位找出出现问题的原因所在? |
|