49

我正在尝试使用 java.nio.file.Files 复制文件,如下所示:

Files.copy(cfgFilePath, strTarget, StandardCopyOption.REPLACE_EXISTING);

问题是 Eclipse 说“文件类型中的方法复制(路径,路径,复制选项...)不适用于参数(文件,字符串,StandardCopyOption)”

我在 Win7 x64 上使用 Eclipse 和 Java 7。我的项目设置为使用 Java 1.6 兼容性。

有没有解决方案,或者我必须创建类似的东西作为解决方法:

File temp = new File(target);

if(temp.exists())
  temp.delete();

谢谢。

4

4 回答 4

121

您需要Path按照错误消息的说明传递参数:

Path from = cfgFilePath.toPath(); //convert from File to Path
Path to = Paths.get(strTarget); //convert from String to Path
Files.copy(from, to, StandardCopyOption.REPLACE_EXISTING);

假设您strTarget的路径是有效的。

于 2013-06-18T13:02:50.443 回答
10

作为@assylias 回答的补充:

如果您使用 Java 7,请File完全放弃。你想要的是Path相反。

要获得Path与文件系统上的路径匹配的对象,请执行以下操作:

Paths.get("path/to/file"); // argument may also be absolute

很快就习惯了。请注意,如果您仍然使用需要的 API FilePath则有一个.toFile()方法。

请注意,如果您不幸使用了返回File对象的 API,您可以随时执行以下操作:

theFileObject.toPath()

但是在你的代码中,使用Path. 系统地。不假思索。

编辑使用 1.6 使用 NIO 将文件复制到另一个文件可以这样做;请注意,该Closer课程是由Guava启发的:

public final class Closer
    implements Closeable
{
    private final List<Closeable> closeables = new ArrayList<Closeable>();

    // @Nullable is a JSR 305 annotation
    public <T extends Closeable> T add(@Nullable final T closeable)
    {
        closeables.add(closeable);
        return closeable;
    }

    public void closeQuietly()
    {
        try {
            close();
        } catch (IOException ignored) {
        }
    }

    @Override
    public void close()
        throws IOException
    {
        IOException toThrow = null;
        final List<Closeable> l = new ArrayList<Closeable>(closeables);
        Collections.reverse(l);

        for (final Closeable closeable: l) {
            if (closeable == null)
                continue;
            try {
                closeable.close();
            } catch (IOException e) {
                if (toThrow == null)
                    toThrow = e;
            }
        }

        if (toThrow != null)
            throw toThrow;
    }
}

// Copy one file to another using NIO
public static void doCopy(final File source, final File destination)
    throws IOException
{
    final Closer closer = new Closer();
    final RandomAccessFile src, dst;
    final FileChannel in, out;

    try {
        src = closer.add(new RandomAccessFile(source.getCanonicalFile(), "r");
        dst = closer.add(new RandomAccessFile(destination.getCanonicalFile(), "rw");
        in = closer.add(src.getChannel());
        out = closer.add(dst.getChannel());
        in.transferTo(0L, in.size(), out);
        out.force(false);
    } finally {
        closer.close();
    }
}
于 2013-06-18T13:08:07.763 回答
5
package main.java;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;

public class CopyFileOnExist {

    public static void main(String[] args)  {

        Path sourceDirectory = Paths.get("C:/Users/abc/Downloads/FileNotFoundExceptionExample/append.txt");
        Path targetDirectory = Paths.get("C:/Users/abc/Downloads/FileNotFoundExceptionExample/append5.txt");

        //copy source to target using Files Class
        try {
            Files.copy(sourceDirectory, targetDirectory,StandardCopyOption.REPLACE_EXISTING);
        } catch (IOException e) {
            System.out.println(e.toString());
        }
    }

}
于 2019-02-19T13:46:51.567 回答
1

strTarget 是“字符串”对象而不是“路径”对象

于 2013-06-18T13:03:52.183 回答