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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public class Test11 {

         
        public static void main(String[] args) {
               
                long start = System.currentTimeMillis();
                myCopy();
                long end = System.currentTimeMillis();
                //运行时间
                System.out.println(end-start+"毫秒");
        }
         public static void myCopy()
         {
                 Reader read =null;
                 Writer writer = null;
                 try {
                         // 生成读写流对象,指定要操作的文件。
                          read = new FileReader("d:\\1.txt");
                          writer = new FileWriter("d:\\copy.txt");
                          char[] chs =new char[100];
                          int len = 0;
                          //复制文件
                          while((len=read.read(chs))!=-1)
                          {
                                  writer.write(chs,0,len);
                                  writer.flush();
                          }
                          
                } catch ( IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                }finally
                {
                        if(read!=null)
                                try {
                                        read.close();
                                } catch (IOException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                }
                        if(writer!=null)
                                try {
                                        writer.close();
                                } catch (IOException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                }
                }
                 
         }
         
}

0 个回复

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