(Unknown Source) at java.io.FileOu_filenotfo">
当前位置:   article > 正文

(完美解决)java文件操作报错:java.io.FileNotFoundException(拒绝访问)_filenotfoundexception 拒绝访问

filenotfoundexception 拒绝访问

01-错误信息:

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
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

02-代码:

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);

	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

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);

	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/892062
推荐阅读
相关标签
  

闽ICP备14008679号