gpt4 book ai didi

移动文件的静态方法中的 java.io.FileNotFoundException(访问被拒绝)

转载 作者:行者123 更新时间:2023-12-01 04:14:31 25 4
gpt4 key购买 nike

在运行以下脚本移动文件时,我遇到了 java.io.FileNotFoundException: C:\Users\520\Desktop\Thing(访问被拒绝) 错误。这是否意味着我应该在管理员权限下运行我的 IDE?

public static void moveFiles(){
InputStream inStream = null;
OutputStream outStream = null;
try{
File afile = new File("C:\\Users\\520\\Desktop\\hey.txt"); // Gotta specify initial path. Consider adding an input for this
File bfile = new File("C:\\Users\\520\\Desktop\\Thing");

inStream = new FileInputStream(afile);
outStream = new FileOutputStream(bfile);

byte[] buffer = new byte[1024];

int length; // copy the file content in bytes
while((length = inStream.read(buffer)) > 0){
outStream.write(buffer, 0, length);
}
inStream.close();
outStream.close();

afile.delete();
System.out.println("File was copied successfully!");
}catch(IOException e){
e.printStackTrace();
}
}

最佳答案

使用它来调整目标文件对象,以便如果它是一个目录,它将使用该目录中的源文件的名称。

if (bfile.isDirectory()) bfile = new File(bfile, afile.getName());

关于移动文件的静态方法中的 java.io.FileNotFoundException(访问被拒绝),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19570848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com