在Java中,可以使用Files.copy()
方法來復制文件到其他路徑。以下是一個簡單的示例:
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());
}
}
}
在上面的示例中,我們首先創建了兩個Path
對象,分別表示源文件和目標文件的路徑。然后使用Files.copy()
方法將源文件復制到目標文件的路徑。如果復制成功,將打印"File copied successfully!",否則將打印相應的錯誤信息。