在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!",否则将打印相应的错误信息。