在Java中,可以使用Files.copy()
方法來復(fù)制文件到其他路徑。以下是一個(gè)簡單的示例:
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class FileCopyExample {
public static void main(String[] args) {
Path source = Paths.get("path/to/source/file.txt");
Path destination = Paths.get("path/to/destination/file.txt");
try {
Files.copy(source, destination);
System.out.println("File copied successfully!");
} catch (IOException e) {
System.out.println("Error copying file: " + e.getMessage());
}
}
}
在上面的示例中,我們首先創(chuàng)建了兩個(gè)Path
對象,分別表示源文件和目標(biāo)文件的路徑。然后使用Files.copy()
方法將源文件復(fù)制到目標(biāo)文件的路徑。如果復(fù)制成功,將打印"File copied successfully!",否則將打印相應(yīng)的錯(cuò)誤信息。