java.io.IOException: 删除原始文件 moveFileToDirectory 失败
java.io.IOException: Failed to delete original file moveFileToDirectory
我试图在转换文件后使用 FileUtils.moveFileToDirectory 在 if 语句中移动以下文件。 JPG 和 gif 文件被移动到新文件夹,但只要程序找到 ICO 文件,它就不会将该文件移动到新文件夹并给 med StackTrace:java.io.IOException:无法删除原始文件 'original path of the file' 复制到 'the new path for the file' 后。
这是该方法的代码:
public void storeOriginalImages() {
for(File file: model.getFileList()) {
if(file.getName().endsWith(".GIF") || file.getName().endsWith(".gif") || file.getName().endsWith(".JPG")
|| file.getName().endsWith(".jpg") || file.getName().endsWith(".ico") || file.getName().endsWith(".ICO")
|| file.getName().endsWith(".BMP") || file.getName().endsWith(".bmp")) {
System.out.println("in copy else");
File illegalExtension = new File(file.getAbsolutePath());
File illegalExtensionDest = new File(model.getTargetexcelFilepath() + "/" + model.getFolderName() + "_img_backup");
System.out.println(illegalExtension + "/" + illegalExtensionDest);
try {
FileUtils.moveFileToDirectory(illegalExtension, illegalExtensionDest, true);
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
这是 ICO 文件转换为 png 的方式:
else if(s.getName().endsWith(".ico") || s.getName().endsWith(".ICO")) {
List<BufferedImage> bi = ICODecoder.read(new File(s.getAbsolutePath()));
System.out.println("reading");
ImageIO.write(bi.get(0), "png", new File(s.getParentFile().getAbsoluteFile(), fileNameWithOutExt + ".png"));
System.out.println("Ico was converted.");
}
我以你的例子为例并进行了一些编辑。似乎当 ICODecoder 尝试使用流从文件中读取时,它没有正确关闭它,因此您需要在代码中关闭它。这是工作示例
File oldFile = new File("a.ico");
try (InputStream inputStream = new FileInputStream(oldFile)) {
List<BufferedImage> bi = ICODecoder.read(inputStream);
ImageIO.write(bi.get(0), "png", new File("a" + ".png"));
} catch (IOException e) {
LOG.error("Something happend", e);
}
FileUtils.moveFile(oldFile, new File("a.jpg"));
您需要在移动文件之前关闭输入流。
我试图在转换文件后使用 FileUtils.moveFileToDirectory 在 if 语句中移动以下文件。 JPG 和 gif 文件被移动到新文件夹,但只要程序找到 ICO 文件,它就不会将该文件移动到新文件夹并给 med StackTrace:java.io.IOException:无法删除原始文件 'original path of the file' 复制到 'the new path for the file' 后。 这是该方法的代码:
public void storeOriginalImages() {
for(File file: model.getFileList()) {
if(file.getName().endsWith(".GIF") || file.getName().endsWith(".gif") || file.getName().endsWith(".JPG")
|| file.getName().endsWith(".jpg") || file.getName().endsWith(".ico") || file.getName().endsWith(".ICO")
|| file.getName().endsWith(".BMP") || file.getName().endsWith(".bmp")) {
System.out.println("in copy else");
File illegalExtension = new File(file.getAbsolutePath());
File illegalExtensionDest = new File(model.getTargetexcelFilepath() + "/" + model.getFolderName() + "_img_backup");
System.out.println(illegalExtension + "/" + illegalExtensionDest);
try {
FileUtils.moveFileToDirectory(illegalExtension, illegalExtensionDest, true);
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
这是 ICO 文件转换为 png 的方式:
else if(s.getName().endsWith(".ico") || s.getName().endsWith(".ICO")) {
List<BufferedImage> bi = ICODecoder.read(new File(s.getAbsolutePath()));
System.out.println("reading");
ImageIO.write(bi.get(0), "png", new File(s.getParentFile().getAbsoluteFile(), fileNameWithOutExt + ".png"));
System.out.println("Ico was converted.");
}
我以你的例子为例并进行了一些编辑。似乎当 ICODecoder 尝试使用流从文件中读取时,它没有正确关闭它,因此您需要在代码中关闭它。这是工作示例
File oldFile = new File("a.ico");
try (InputStream inputStream = new FileInputStream(oldFile)) {
List<BufferedImage> bi = ICODecoder.read(inputStream);
ImageIO.write(bi.get(0), "png", new File("a" + ".png"));
} catch (IOException e) {
LOG.error("Something happend", e);
}
FileUtils.moveFile(oldFile, new File("a.jpg"));
您需要在移动文件之前关闭输入流。