文件操作—文件拷贝

一、错误 代码

public class Job20180131_error {

    public static void copyFile(String ofilePath, String dfilePath)  {
        if (TextUtils.isEmpty(ofilePath) || TextUtils.isEmpty(dfilePath)) {
            System.out.println("ofilePath/dfilePath can not be null/\"\";");
            return;
        }
        File ofile = new File(ofilePath);
        if (!ofile.exists()) {
            System.out.println(ofilePath + " can not found");
        }

        File dfile = new File(dfilePath);
        if (dfile.exists()) {
            dfile.delete();
        } else {
            boolean result = dfile.mkdirs();
            System.out.println("dfile.mkdirs() = " + result);
        }

        FileInputStream fis = null;
        BufferedInputStream bis = null;
        FileOutputStream fos = null;
        BufferedOutputStream bos = null;
        try {

            fis = new FileInputStream(ofile);
            // @param size 通过查看源码可知,默认缓冲大小为8192,这里设置10k
            bis = new BufferedInputStream(fis, 10 * 1024);

            // @param appednd 如果是true,那么字节将被写入到文件的末尾,而不是开始
            fos = new FileOutputStream(dfile, false);
            // @param size 通过查看源码可知,默认缓冲大小为8192,这里设置10k
            bos = new BufferedOutputStream(fos, 10 * 1024);

            byte[] obytes = new byte[4 * 1024];
            int pos = -1;
            while ((pos = bis.read(obytes)) != -1) {
                // 通过查看源码可知,当obytes的size>=缓冲区大小,
                // 就会使用OutputStream的write()方法,从而无法体现出BufferedOutputStream的优势
                // 所以obytes大小这只为4 * 1024
                bos.write(obytes, 0, pos); // 这里差不多2次循环 flushBuffer() 一次
            }
            bos.flush(); // 将缓冲区的剩余数据写入文件

        } catch (IOException e) {
            e.printStackTrace();

        } finally {
            try {
                // 关闭所有文件引用
                if (bos != null) { bos.close(); }
                if (bis != null) { bis.close(); }
                if (fos != null) { fos.close(); }
                if (fis != null) { fis.close(); }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

    public static void main() {
        String ofile = Environment.getExternalStorageDirectory().getAbsolutePath()
                + File.separator + "Download/img1.png";
        String dfile = Environment.getExternalStorageDirectory().getAbsolutePath()
                + File.separator + "AAAA-1/imgCopy1.png";
        copyFile(ofile, dfile);
    }

}

错误日志

01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err: java.io.FileNotFoundException: /storage/emulated/0/AAAA-1/imgCopy1.png: open failed: EISDIR (Is a directory)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at libcore.io.IoBridge.open(IoBridge.java:409)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at java.io.FileOutputStream.<init>(FileOutputStream.java:88)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at com.ktln.must.java.job.Job20180131_error.copyFile(Job20180131_error.java:48)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at com.ktln.must.java.job.Job20180131_error.main(Job20180131_error.java:84)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at com.ktln.must.MainActivity$onCreate$1.onClick(MainActivity.kt:29)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.view.View.performClick(View.java:4480)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.view.View$PerformClick.run(View.java:18686)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.os.Handler.handleCallback(Handler.java:733)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:95)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.os.Looper.loop(Looper.java:157)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:5872)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at java.lang.reflect.Method.invokeNative(Native Method)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at java.lang.reflect.Method.invoke(Method.java:515)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:674)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at dalvik.system.NativeStart.main(Native Method)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err: Caused by: libcore.io.ErrnoException: open failed: EISDIR (Is a directory)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at libcore.io.Posix.open(Native Method)
01-31 15:40:26.605 28686-28686/com.ktln.must W/System.err:     at libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)
01-31 15:40:26.615 28686-28686/com.ktln.must W/System.err:     at libcore.io.IoBridge.open(IoBridge.java:393)
01-31 15:40:26.615 28686-28686/com.ktln.must W/System.err:  ... 15 more

第一次运行会出现上面的错误,第二次运行是正常!!!

二、正确 代码

public class Job20180131 {

    public static void copyFile(String ofilePath, String dfilePathDir, String dfilePath)  {
        if (TextUtils.isEmpty(ofilePath)
                || TextUtils.isEmpty(dfilePathDir)
                || TextUtils.isEmpty(dfilePath)) {
            System.out.println("ofilePath/dfilePathDir/dfilePath can not be null/\"\";");
            return;
        }
        File ofile = new File(ofilePath);
        if (!ofile.exists()) {
            System.out.println(ofilePath + " can not found");
        }

        // 不存在路径,创建路径
        File dfileDir = new File(dfilePathDir);
        if (!dfileDir.exists()) { dfileDir.mkdirs(); }

        // 存在文件删除
        File dfile = new File(dfilePathDir, dfilePath);
//      File dfile = new File(dfilePathDir + File.separator + dfilePath); // 这样也是正确的
        if (dfile.exists()) { dfile.delete(); }

        FileInputStream fis = null;
        BufferedInputStream bis = null;
        FileOutputStream fos = null;
        BufferedOutputStream bos = null;
        try {
            fis = new FileInputStream(ofile);
            // @param size 通过查看源码可知,默认缓冲大小为8192,这里设置10k
            bis = new BufferedInputStream(fis, 10 * 1024);

            // @param appednd 如果是true,那么字节将被写入到文件的末尾,而不是开始
            fos = new FileOutputStream(dfile, false);
            // @param size 通过查看源码可知,默认缓冲大小为8192,这里设置10k
            bos = new BufferedOutputStream(fos, 10 * 1024);

            byte[] obytes = new byte[4 * 1024];
            int pos = -1;
            while ((pos = bis.read(obytes)) != -1) {
                // 通过查看源码可知,当obytes的size>=缓冲区大小,
                // 就会使用OutputStream的write()方法,从而无法体现出BufferedOutputStream的优势
                // 所以obytes大小这只为4 * 1024
                bos.write(obytes, 0, pos); // 这里差不多2次循环 flushBuffer() 一次
            }
            bos.flush(); // 将缓冲区的剩余数据写入文件

        } catch (IOException e) {
            e.printStackTrace();

        } finally {
            try {
                // 关闭所有文件引用
                if (bos != null) { bos.close(); }
                if (bis != null) { bis.close(); }
                if (fos != null) { fos.close(); }
                if (fis != null) { fis.close(); }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

    }

    public static void main() {
        String ofile = Environment.getExternalStorageDirectory().getAbsolutePath()
                + File.separator + "Download/img1.png";

        String dfilePath = Environment.getExternalStorageDirectory().getAbsolutePath()
                + File.separator + "AAAA-10";

        String dfile =  "imgCopy1.png";

        copyFile(ofile, dfilePath, dfile);
    }

}

三、总结

  • 错误代码File dfile = new File(dfilePath);这里的dfilePath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "AAAA-1/imgCopy1.png"是包含文件夹文件;在第一次运行时,实际只是创建了文件夹,file指向是一个文件夹;第二次运行时,由于文件夹已经存在,这时候的file指向才是一个文件;
  • 正确代码File dfileDir = new File(dfilePathDir);这个dfilePathDir = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "AAAA-10";然后调用dfileDir.mkdirs();创建出文件路径,再用路径和文件名构造一个fileFile dfile = new File(dfilePathDir, dfilePath);,使用这个file进行文件写操作。

四、疑问!!!

虽然我找到正确写入的代码,但对这个问题本身还是有些迷糊,我试过在dfilePath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "AAAA-1/imgCopy1.png";下,先创建一个File file1 = new File(dfilePath); 进行file1.mkdirs();,然后再创建一个File file2 = new File(dfilePath);进行写操作,但还是出现上面的错误信息。按照之前的理解,file1可以保证文件路径的存在,file2应该可以正常写操作,但实际是错误的,知道答案的请留言给我!!万分感谢!!



ps: 我找过FileOutputStream的源码,但跟踪到private native void open0(String name, boolean append) throws FileNotFoundException;时,就找不到后文了,无语只能到此暂时放下!!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351