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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 安东诺夫 中级黑马   /  2016-5-20 23:57  /  827 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package FileCopy;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class FileCopy3 {
        public static void main(String[] args) {
                File f1 = new File("D:\\360bizhi\\wallpaperhelper");
                File f2 = new File("j:\\");
                try {
                        copy(f1, f2);//--------------------------------------------------13行
                } catch (IOException e) {
                        e.printStackTrace();
                }
        }

        private static void copy(File f1, File f2) throws IOException {
                f2 = new File(f2, f1.getName());
                if (f2.exists()) {
                        f2.mkdir();
                }
                File[] lf = f1.listFiles();
                for (File file : lf) {
                        if (file.isFile()) {
                                FileInputStream is = new FileInputStream(file);
                                FileOutputStream fos = new FileOutputStream(new File(f2, file.getName()));// 28行
                                byte[] bt = new byte[1024];
                                int len = 0;
                                while ((len = is.read(bt)) != -1) {
                                        fos.write(bt, 0, len);
                                }
                                is.close();
                                fos.close();
                        } else if (file.isDirectory()) {
                                copy(file, f2);
                        }
                }
        }
}

2 个回复

倒序浏览
系统一直报错,提示13,28有错。可我一直没能发现问题系统报错为
java.io.FileNotFoundException: j:\wallpaperhelper\360NetUL.dll (系统找不到指定的路径。)
回复 使用道具 举报
File f1 = new File("D:\\360bizhi\\wallpaperhelper");
File f2 = new File("j:\\");

确定有j盘的存在,而且盘符的格式还不一样,我的电脑盘符必须写成E:\\,也要是英文标点。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马