java.io.IOException:无法删除原始文件moveFileToDirectory

时间:2018-04-03 09:42:29

标签: java fileutils

我尝试在转换文件后使用FileUtils.moveFileToDirectory在if语句中移动以下文件。 JPG和gif文件被移动到新文件夹,但是每当程序找到ICO文件时,它都不会将该文件移动到新文件夹并给出了StackTrace:java.io.IOException:无法删除原始文件& #39;文件的原始路径'复制到'文件的新路径后#39;。 以下是该方法的代码:

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.");
        }

1 个答案:

答案 0 :(得分:0)

我拿了你的例子并编辑了一下。当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"));

您需要在移动文件之前关闭输入流。