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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 盛亚昆 中级黑马   /  2012-3-25 18:00  /  1338 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

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

                try
                {
                        fos= new FileOutputStream("D:\\1.JPEG");//复制的
                        fis=new FileInputStream("E:\\2.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("写入关闭失败");
                }
               
               
                }
               
        }
}
求解
Exception in thread "main" java.lang.RuntimeException: 复制失败
        at fuZhi.main(fuzhi.java:34)

2 个回复

倒序浏览
  1. fis=new FileInputStream("E:\\2.JPEG");
复制代码
你的E盘有这个图片吗?
如果没有他就会出错
回复 使用道具 举报
我运行过,程序没有问题,有可能是源文件没找到,即2.JPEG图片没有找到。
有一点提醒下:类名第一个字母一般是大写的哦。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马