14

我正在寻找移动和覆盖文件的操作。我知道Java7中有一个新方法,但我希望能绕过 Java7。我也知道FileUtilsGuava中的方法,但是 FileUtils 不会覆盖并且 Guava 没有记录它。

我也知道,我可以编写自己的方法,我开始了,但是在这里和那里看到了一些问题,所以我希望已经完成了一些事情。

你有什么建议吗?

4

9 回答 9

12

我使用以下方法:

public static void rename(String oldFileName, String newFileName) {
    new File(newFileName).delete();
    File oldFile = new File(oldFileName);
    oldFile.renameTo(new File(newFileName));
}
于 2013-01-18T13:35:50.527 回答
7

FileUtils.copyFileToDirectory 的 Apache FileUtils JavaDoc 说:“如果目标文件存在,则此方法将覆盖它。” 复制后,您可以在删除前进行验证。

public boolean moveFile(File origfile, File destfile)
{
    boolean fileMoved = false;
    try{
    FileUtils.copyFileToDirectory(origfile,new File(destfile.getParent()),true);
    File newfile = new File(destfile.getParent() + File.separator + origfile.getName());
    if(newfile.exists() && FileUtils.contentEqualsIgnoreCaseEOL(origfile,newfile,"UTF-8"))
    {
        origfile.delete();
        fileMoved = true;
    }
    else
    {
        System.out.println("File fail to move successfully!");
    }
    }catch(Exception e){System.out.println(e);}
    return fileMoved;
}
于 2015-05-13T14:03:35.107 回答
6

我已经完成了自己的方法的编写,对于每个对可能的解决方案感兴趣的人,我使用了 ApacheCommons FileUtils,这可能并不完美,但对我来说足够好:

/**
 * Will move the source File to the destination File.
 * The Method will backup the dest File, copy source to
 * dest, and then will delete the source and the backup.
 * 
 * @param source
 *            File to be moved
 * @param dest
 *            File to be overwritten (does not matter if
 *            non existent)
 * @throws IOException
 */
public static void moveAndOverwrite(File source, File dest) throws IOException {
    // Backup the src
    File backup = CSVUtils.getNonExistingTempFile(dest);
    FileUtils.copyFile(dest, backup);
    FileUtils.copyFile(source, dest);
    if (!source.delete()) {
        throw new IOException("Failed to delete " + source.getName());
    }
    if (!backup.delete()) {
        throw new IOException("Failed to delete " + backup.getName());
    }
}

/**
 * Recursive Method to generate a FileName in the same
 * Folder as the {@code inputFile}, that is not existing
 * and ends with {@code _temp}.
 * 
 * @param inputFile
 *            The FileBase to generate a Tempfile
 * @return A non existing File
 */
public static File getNonExistingTempFile(File inputFile) {
    File tempFile = new File(inputFile.getParentFile(), inputFile.getName() + "_temp");
    if (tempFile.exists()) {
        return CSVUtils.getNonExistingTempFile(tempFile);
    } else {
        return tempFile;
    }
}
于 2013-01-18T14:14:13.307 回答
4

可以使用预删除目标实现具有覆盖方法的纯 Java nio 解决方案移动,如图所示

public void move(File sourceFile, String targetFileName) {
    Path sourcePath = sourceFile.toPath();
    Path targetPath = Paths.get(targetFileName);
    File file = targetFile.toFile();
    if(file.isFile()){
        Files.delete(targetPath);
    }
    Files.move(sourcePath, targetPath);
}
于 2015-01-28T23:30:00.783 回答
3

对我有用的最短解决方案:

File destFile = new File(destDir, file.getName());
if(destFile.exists()) {
    destFile.delete();
}
FileUtils.moveFileToDirectory(file, destDir, true);
于 2017-02-28T04:01:37.233 回答
1

如果您将继续编写自己的实用程序,您可能需要查看Ant中任务的实现copy,因为它支持覆盖。

于 2013-01-18T13:40:28.630 回答
1

使用 Apache Commons FileUtils :

  try {         
        FileUtils.moveFile(source, dest);
        print("------------------------------");
        print(name
                + " moved to "
                + PropertiesUtil
                        .getProperty(PropertiesUtil.COMPLETED_PATH));

    } catch (FileExistsException fe){

        if(dest.delete()){
            try {
                FileUtils.moveFile(source, dest);
            } catch (IOException e) {
                logger.error(e);
            }
            print("------------------------------");
            print(name
                    + " moved to "
                    + PropertiesUtil
                            .getProperty(PropertiesUtil.COMPLETED_PATH));
        }
    } catch (Exception e) {

        logger.error(e);
    }
于 2014-08-08T06:29:04.960 回答
1

番石榴 Files.write

用字节数组的内容覆盖文件

Files.write(bytes, new File(path));

文件.copy

警告:如果 to 表示现有文件,该文件将被 from 的内容覆盖。如果 to 和 from 引用同一个文件,则该文件的内容将被删除。

Files.movecopy 幕后使用。所以假设它也被覆盖是安全的。

于 2017-06-30T15:53:56.963 回答
0

您还可以使用https://xdisk.java.net/ 之类的工具来启用对现有文件系统的事务访问。

apache还有一个替代方案:

https://commons.apache.org/proper/commons-transaction/apidocs/org/apache/commons/transaction/file/FileResourceManager.html

于 2016-02-26T10:04:45.017 回答