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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 914360849 中级黑马   /  2015-5-23 23:22  /  270 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*
编写一个程序,用于实现文件的备份,程序运行时的命令语法为:
java MyCopy (sourcefile) (destfile)


*/
import java.io.*;
class MyCopy2
{
        public static void main(String[] args)
        {
                long start =System.currentTimeMillis();
                FileInputStream fis=null;
                FileOutputStream fos=null;
                try
                {
                       
                        //文件字节输入流
                         fis=new FileInputStream("c:\\功夫熊猫.mkv");
                       
                        //文件字节输出流
                         fos=new FileOutputStream("d:\\功夫熊猫1.mkv");
                       

                        byte[] buf=new byte[1024];
        //                int i=bfis.read(buf,0,1024);
                        int i=0;
                        while((i=fis.read(buf))!=-1)
                        {
                                fos.write(buf,0,i);
        //                        bfos.flush();
                        }
                }
                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("写入关闭失败");
                                }
                }
//                bfis.close();
//                bfos.close();

                long end =System.currentTimeMillis();
                System.out.println((end-start)+"毫秒");
        }
}

0 个回复

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