java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > java java.io.FileNotFoundException(拒绝访问)

java文件操作报错:java.io.FileNotFoundException(拒绝访问)问题

作者:java全套学习资料

在进行编程时,经常会遇到因疏忽小细节而导致的错误,如忘记在路径后添加文件名,本文通过一个具体的修改前后对比示例,解释了错误原因,并给出了解决方案,这类经验分享对编程学习者具有参考价值

java文件操作报错:java.io.FileNotFoundException(拒绝访问)

错误信息

Exception in thread "main" java.io.FileNotFoundException: e:b (拒绝访问。)
    at java.io.FileOutputStream.open0(Native Method)
    at java.io.FileOutputStream.open(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at com.eleven.SevenDemo04.copyFile(SevenDemo04.java:44)
    at com.eleven.SevenDemo04.main(SevenDemo04.java:21)

代码

1)修改前:

public static void main(String[] args) throws Exception {

		File source = new File("d:\aa\aa.txt"); // 源目标路径
		File dest = new File("e:\bb\"); // 目标路径

		copyFile(source, dest);

	}

2)修改后:

错误的原因是读取的目录后面忘加了文件名!

public static void main(String[] args) throws Exception {

		File source = new File("d:\aa\aa.txt"); // 源目标路径
		File dest = new File("e:\bb\" + source.getName()); // 目标路径

		copyFile(source, dest);

	}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文