黑马程序员技术交流社区

标题: 复制一个文件 [打印本页]

作者: 222222222222    时间: 2016-6-3 14:46
标题: 复制一个文件
import java.io.*;
/*
通过缓冲区复制一个.java文件
*/
class Demo2
{
        public static void main(String[] args)
        {
                BufferedReader br=null;
                BufferedWriter bw=null;

                try
                {
                        br=new BufferedReader(new FileReader("demo.txt"));
                        bw=new BufferedWriter(new FileWriter("x.txt"));
                        
                        String line=null;
                        while((line=br.readLine())!=null)
                        {
                                bw.write(line);
                                bw.newLine();
                                bw.flush();
                        }
                }
                catch (IOException e)
                {
                        throw new RuntimeException("读写失败");
                }
                finally
                {
                        
                        try
                        {
                                if(br!=null)
                                br.close();
                        }
                        catch (IOException e)
                        {
                                throw new RuntimeException("读写关闭失败");
                        }
                        
                        try
                        {
                                if(bw!=null)
                                bw.close();
                        }
                        catch (IOException e)
                        {
                                throw new RuntimeException("关闭失败");
                        }
                        

                }
        }
}
作者: chenshaohua    时间: 2016-6-3 21:45
很好!!!!!!!!!!
作者: cofujun    时间: 2016-6-3 21:52
支持多多I支持




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2