我正在尝试将文件从一个文件夹复制到另一个文件夹。
以下是我的代码中的内容:
public static void copyFile(String path) throws IOException{
newPath = path;
File destination = new File ("E:/QA/chart.js");
FileUtils.copyFile(destination, new File(newPath));
}
但它没有将所需文件复制到其位置。 需要什么,从E盘复制chart.js并复制到newPath变量位置。 还有其他方法可以将文件从一个地方复制到另一个地方吗?
答案 0 :(得分:5)
您可以使用标准java.nio.file.Files.copy(Path source, Path target, CopyOption... options)
答案 1 :(得分:3)
您可以使用此
Path FROM = Paths.get(Your Source file complete path);
Path TO = Paths.get(Destination complete path);
CopyOption[] options = new CopyOption[]{
StandardCopyOption.REPLACE_EXISTING,
StandardCopyOption.COPY_ATTRIBUTES
};
java.nio.file.Files.copy(FROM, TO, options);
答案 2 :(得分:1)
试试这个。
FileUtils.copyFile(src, dest)
这发生在副本中。
所以这个观点File src = new File ("E:/QA/chart.js");
假设src
文件存在。
然后你创建一个像这样的新目标文件
File dest = new File(newPath);
if(!dest.exists())
dest.createNewFile();
然后你可以复制
FileUtils.copyFile(src,dest);