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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

李林轩

黑马帝

  • 黑马币:0

  • 帖子:17

  • 精华:0

© 李林轩 黑马帝   /  2012-1-11 21:33  /  1759 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.*;
public class CopyPic {

        public static void main(String[] args) {

                FileOutputStream fos = null;
                FileInputStream fis = null;
                try {
                        fos = new FileOutputStream("c:\\2.jpg");
                        fis = new FileInputStream("c:\\008.jpg");
                       
                        byte[] buf = new byte[1024];

                        int len = 0;
                       
                        while((len=fis.read(buf))!=-1){
                                fos.write(buf,0,len);
                        }
                       
                } catch (IOException e) {
                        // TODO: handle exception
                        throw new RuntimeException("复制文件失败");
                }finally{
                        try {
                                if(fis!=null)
                                        fis.close();
                        } catch (IOException e2) {
                                // TODO: handle exception
                                throw new RuntimeException("读取关闭失败");
                        }
                        try {
                                if(fos!=null)
                                        fos.close();
                        } catch (IOException e2) {
                                // TODO: handle exception
                                throw new RuntimeException("写入关闭失败");
                        }
                }

        }

}

帮忙看下我哪里错了?

2 个回复

倒序浏览
完全正确阿,我都运行出来了 ,不过如果   008.jpg 文件不在C盘下的话 就会找不到文件的错误,008.JPG必须是已经存在的

评分

参与人数 1技术分 +1 收起 理由
admin + 1

查看全部评分

回复 使用道具 举报
嗯,我知道了!刚才我把008.jpg写成008.bmp忘改过来了,谢谢啦
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马