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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 盛亚昆 中级黑马   /  2012-3-24 09:29  /  1646 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.*;
class  fuzhi
{
        public static void main(String[] args)
        {
                FileOutputStream fos=null;//作用整个类
                FileInputStream fis=null;

                try
                {
                        fos= new FileOutputStream("D:\\ b.JPEG");//复制的
                        fis=new FileInputStream("D:\\ a.JPEG");//原文件
                       
                        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
                {
                try
                {
                        if (fis!=null)
                            fis.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("读取失败");
                }
                try
                {
                        if (fos!=null)
                            fos.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("写入关闭失败");
                }
               
               
                }
               
               
               
               
        }
}
import java.io.*;
class  fuzhi
{
        public static void main(String[] args)
        {
                FileOutputStream fos=null;//作用整个类
                FileInputStream fis=null;

                try
                {
                        fos= new FileOutputStream("D:\\ b.JPEG");//复制的
                        fis=new FileInputStream("D:\\ a.JPEG");//原文件
                       
                        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
                {
                try
                {
                        if (fis!=null)
                            fis.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("读取失败");
                }
                try
                {
                        if (fos!=null)
                            fos.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("写入关闭失败");
                }
               
               
                }
               
               
               
               
        }
}
import java.io.*;
class  fuzhi
{
        public static void main(String[] args)
        {
                FileOutputStream fos=null;//作用整个类
                FileInputStream fis=null;

                try
                {
                        fos= new FileOutputStream("D:\\ b.JPEG");//复制的
                        fis=new FileInputStream("D:\\ a.JPEG");//原文件
                       
                        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
                {
                try
                {
                        if (fis!=null)
                            fis.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("读取失败");
                }
                try
                {
                        if (fos!=null)
                            fos.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("写入关闭失败");
                }
               
               
                }
               
               
               
               
        }
}

异常了,求解啊!!!!!
D:\java0217\day20>java fuzhi
Exception in thread "main" java.lang.RuntimeException: 复制失败
        at fuzhi.main(fuzhi.java:34)


6 个回复

倒序浏览
本帖最后由 崔岩 于 2012-3-24 09:55 编辑

刚才看错了。 你把这个异常的信息打印出来看看具体是什么异常,别用你自定义的,这样看不出具体的异常出现在哪了。是不是数组越界了,你图片数据小于1M么》
回复 使用道具 举报
下面的两行代码:
fos= new FileOutputStream("D:\\ b.JPEG");//复制的
fis=new FileInputStream("D:\\ a.JPEG");//原文件
其中:
D:\\ b.JPEG
D:\\ a.JPEG
多了个空格!
回复 使用道具 举报
"\\"没错,看下“\\”后是否有空格,有空格也会报java.lang.RuntimeException错误
回复 使用道具 举报
空格 去掉了 ,还是 不行啊,
回复 使用道具 举报
盛亚昆 发表于 2012-3-24 14:35
空格 去掉了 ,还是 不行啊,

确定吗?我有测试过可以的,
回复 使用道具 举报
真的还是 不行 我 没成功啊
import java.io.*;
class  fuZhi
{
        public static void main(String[] args)
        {
                FileOutputStream fos=null;//作用整个类
                FileInputStream fis=null;

                try
                {
                        fos= new FileOutputStream("D:\\b.JPEG");//复制的
                        fis=new FileInputStream("D:\\a.JPEG");//原文件
                       
                        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
                {
                try
                {
                        if (fis!=null)
                            fis.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("读取失败");
                }
                try
                {
                        if (fos!=null)
                            fos.close();
                       
                }
                catch (IOException e)
                {
                        throw new RuntimeException("写入关闭失败");
                }
               
               
                }
               
        }
}

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马