文件读取的时候总是出现(系统找不到指定的文件。)
代码如下
File in = new File("c:\\input.in");
Scanner s = new Scanner(in);
int a = s.nextInt();
int b = s.nextInt();
File fout = new File("c:\\output.out");
PrintWriter out = new PrintWriter(fout);
out.println();
in.delete();
out.close();
这个怎么回事呢
------解决方案--------------------
if(!in.exists())
in.createNewFile();