黑马程序员技术交流社区

标题: 使用带缓冲功能的字节流复制文件。 [打印本页]

作者: nsunshine    时间: 2014-7-11 23:37
标题: 使用带缓冲功能的字节流复制文件。
public class Test6
{
          public static void main(String[] args) throws IOException
          {
                  //简化写法,建立BufferdReader和BufferedWriter两个缓冲,同时借助转换流
                  BufferedReader bufr=new BufferedReader(new InputStreamReader(new FileInputStream("e:\\1.txt")));
                  BufferedWriter bufw=new BufferedWriter(new OutputStreamWriter(new FileOutputStream("e:\\2.txt")));
                  String line=null;
                  //读取1.txt中的内容
                   while((line=bufr.readLine())!=null)
                  {
                    //写到2.txt中
                    bufw.write(line);
                    //换行
                    bufw.newLine();
                    //刷新
                    bufw.flush();
                   }
                  //关流
                  bufw.close();
                  bufr.close();
                }
}

作者: IT未来    时间: 2015-3-5 20:41
我的试题中也有这个题目,学习了。
作者: kolen.j    时间: 2015-5-12 02:02
测试题,,,,
作者: xxz    时间: 2015-5-26 17:19
如果有中文,就会有乱码的情况呢
作者: phantom33    时间: 2015-10-8 21:45
这个太赞了




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