1.报错如下:
java.io.FileNotFoundException: D: (拒绝访问。)
解决:在设置File file=new File(str); str的时候需要把str精确掉某个文件。例如str="D:"是错误的,应该是 str="D:\\a.txt"
1.报错如下:
java.io.FileNotFoundException: D: (拒绝访问。)
解决:在设置File file=new File(str); str的时候需要把str精确掉某个文件。例如str="D:"是错误的,应该是 str="D:\\a.txt"