博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
io流
阅读量:6588 次
发布时间:2019-06-24

本文共 1926 字,大约阅读时间需要 6 分钟。

package com.io;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.FileNotFoundException;import java.io.IOException;public class Test2 {    /**     * @param args     * @throws IOException      */    public static void main(String[] args)  {               File file1 = new File("C:\\Users\\Coda\\Desktop\\google1.jpg");        File file2 = new File("C:\\Users\\Coda\\Desktop\\图片储存\\dd.jpg");                    CopyIt(file1,file2);            }        public static void CopyIt( File file1, File file2) {        FileInputStream fileInputStream;        try {            fileInputStream = new FileInputStream(file1);        } catch (FileNotFoundException e) {            System.out.println("文件路径错误");             throw new RuntimeException(e);        }        FileOutputStream fileOutputStream = null;        try {            fileOutputStream = new FileOutputStream(file2,true);        } catch (FileNotFoundException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }                byte[]b = new byte[2];        int count = 0;        try {            while((count = fileInputStream.read(b))!=-1){                  fileOutputStream.write(b);                  }        } catch (IOException e) {              System.out.println("写入文件失败");            throw new RuntimeException(e);                    } finally{              try {                fileOutputStream.close();            } catch (IOException e) {                System.out.println("文件正在运行,无法关闭");                throw new RuntimeException(e);            }               try {                fileInputStream.close();            } catch (IOException e) {                System.out.println("文件正在运行,无法关闭");                throw new RuntimeException(e);            }              System.out.println("文件复制成功");        }              }}

 

转载于:https://www.cnblogs.com/chEnYoNg11/p/6181854.html

你可能感兴趣的文章
checkStyle使用手册
查看>>
MyEclipse weblogic Deploy Location项目名称不正确解决方案
查看>>
3月27日和28日的简单面试记录
查看>>
Scala中隐式类代码实战详解之Scala学习笔记-53
查看>>
lammps input for water
查看>>
echarts添加点击事件
查看>>
html实现“加入收藏”代码
查看>>
机器学习之最优化问题
查看>>
Selenium 详解xpath定位
查看>>
网页做复制功能
查看>>
PHP中如何对二维数组按某个键值进行排序
查看>>
SharePoint 2013 EventHanlder工具
查看>>
jQuery和javascript的区别
查看>>
doctest --- 一个改善python代码质量的工具
查看>>
hdu1290
查看>>
hdu2141Can you find it?
查看>>
值类型和引用类型 (转)
查看>>
Axure RP 8 下载 激活可以使用的授权码、用户名、秘钥等
查看>>
20155303 2016-2017-2 《Java程序设计》第四周学习总结
查看>>
c语言基础课第三次作业
查看>>