我已经尝试了许多来自同一个问题的例子,包括:
IOUtils.copy();
(复制是一种不存在的方法)
Files.copy(source, target, REPLACE_EXISTING);
(REPLACE_EXISTING "找不到符号")
FileUtils.copyFile();
(FileUtils 不存在)
使用它们的问题在括号中。
以下是重复次数最多的复制方法的代码:
import static java.nio.file.Files;
public void Install()
{
CrtFol();
CrtImgFol();
CrtSaveFol();
CrtSaveFile();
open.runmm();
//I have added the import for "Files"
Files.copy(img1, d4, REPLACE_EXISTING);
//Compiler says "Cannot find symbol" when I go over REPLACE_EXISTING
//img1 is a File and d4 is a File as a directory
}
还有其他方法可以复制或修复上述方法吗?