A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈文杰 中级黑马   /  2013-11-21 11:43  /  1166 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

想把一个文件夹里的图片(这个文件夹里有文件夹也有图片,我想只拷备图片)拷备到另一个文件夹,被拒绝。单纯拷贝文件就没问题。
public class MainClass {
public static void main(String[] args) throws Exception {
findAndCopyPics("C:\\Users\\Administrator\\Desktop\\370to470");
}

public static void findAndCopyPics(String path) throws Exception {
File file = new File(path);
if (!file.isDirectory())
return;
File[] listFiles = file.listFiles();
for (File f : listFiles) {
if (f.isDirectory()) {// 是文件夹就递归
findAndCopyPics(path + "\\" + f.getName());
} else {// 不是文件夹,即是文件就拷备
copyPics(path + "\\" + f.getName());
}
}
}

public static void copyPics(String path) throws Exception {
File inputfile = new File(path);
File outputfile = new File("C:\\axaa\\");// 输出的文件夹.
System.out.println(path);
FileInputStream fis = new FileInputStream(inputfile);
FileOutputStream fos = new FileOutputStream(outputfile);
byte[] b = new byte[1024];
while (fis.read(b) > 0) {
fos.write(b);
}
fis.close();
fos.close();
}
fos.close();
}

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

1 个回复

倒序浏览
流对象选择有问题   而且要判断copy的格式

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马