Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要编写一个应用程序来将文件(.jar、 .xml、.sql、 .exe)从不同位置复制到某个特定位置 使用 java 复制文件的最有效方法是什么?
在 java 7 中使用java.nio.file.Files.File#copywhich induced。示例 -
java.nio.file.Files.File#copy
Files.copy(source, target, REPLACE_EXISTING);
这在基本 I/O教程中有详细介绍