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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Spring up 中级黑马   /  2012-12-17 14:14  /  1250 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.*;
class  FileInputStreamDemo
{
        public static void main(String[] args)
        {
                FileOutputStream fos = null;
                FileInputStream fis = null;
                try
                {
                        fos = new FileOutputStream("picture_copy");
                        fis = new FileInputStream("picture");

                        byte[] buf = new byte[1024];

                        int len = 0;

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

求助:我的程序没有复制图片成功!我一下找不出来原因,是哪里出问题了?

4 个回复

倒序浏览
fos = new FileOutputStream("picture_copy");//这里也是
fis = new FileInputStream("picture");//picture.jpg--要加上文件的后缀,不然找不到

评分

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

查看全部评分

回复 使用道具 举报
fos = new FileOutputStream("picture_copy");
fis = new FileInputStream("picture");
1.你的图片文件是没有后缀名的吗?

while((len=fis.read(buf))!=-1)
2.这句话左右括号不匹配,多了个右括号
回复 使用道具 举报
fos = new FileOutputStream("picture_copy");
fis = new FileInputStream("picture");
你要保证图片有格式后缀,比如gif,jpg等,不然不能识别

评分

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

查看全部评分

回复 使用道具 举报
谢谢各位了  哦啦!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马