© lll456123l 中级黑马 / 2016-5-5 19:13 / 3843 人查看 / 11 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
8黑马币
最佳答案这才是递归拷贝文件的代码,自己看看
public static void copy(File dir,File copyDir) throws IOException {
File newFile = new File(copyDir,dir.getName());
newFile.mkdirs();
File[] subFiles = dir.listFiles();
for(File subFile : subFiles) {
if(subFile.isFile()) {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(subFile));
File newFiles = new File(newFile,s ...
| |
| |
| |
| |
| |
| |
| |