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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© pengbin 中级黑马   /  2015-7-21 10:01  /  457 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*
*
* 复制一个图片
*
* 思路:
* 1.用字节读取流对象和图片关联
* 2.用字节写入流对象创建一个图片文件。用于存储获取到的图片数据
* 3.通过循环读写,完成数据的存储。
* 4.关闭资源
*
*
*/

import java.io.*;

public class CopyPic
{
        public static void main(String[] args)
        {
                FileOutputStream fos = null;
                FileInputStream fis = null;
               
                try
                {
                        fos = new FileOutputStream("demo_copy.png");
                        fis = new FileInputStream("demo.png");
                       
                        byte[] buf = new byte[1024];
                        int len = 0;
                       
                        while((len=fis.read(buf))!=-1)
                        {
                                fos.write(buf,0,len);
                        }
                               
                }
                catch(IOException e)
                {
                        throw new RuntimeException("读写失败!");
                }
                finally
                {
                        if(fis!=null)
                        try
                        {
                                fis.close();       
                        }
                        catch(IOException e)
                        {
                                throw new RuntimeException("读关闭失败!");
                        }
                       
                        if(fos!=null)
                                try
                                {
                                        fos.close();       
                                }
                                catch(IOException e)
                                {
                                        throw new RuntimeException("写关闭失败!");
                                }
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马