Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #8419

Creating a PrintWriter with BufferedWriter versus just File

From KevinSimonson <kvnsmnsn@hotmail.com>
Newsgroups comp.lang.java.programmer
Subject Creating a PrintWriter with BufferedWriter versus just File
Date 2011-09-30 10:00 -0700
Organization http://groups.google.com
Message-ID <80d64f66-ad97-4b6e-8000-25c684ade081@p11g2000yqe.googlegroups.com> (permalink)

Show all headers | View raw


What's the difference between this code:

PrintWriter destination
          = new PrintWriter
              ( new BufferedWriter( new FileWriter( new File( arg))));

and this code:

PrintWriter destination = new PrintWriter( new File( arg));

Do I get buffered output with the first code that I don't get with the
second code?  Or do I get the same buffered behavior with both?

Kevin Simonson

Back to comp.lang.java.programmer | Previous | NextNext in thread | Find similar


Thread

Creating a PrintWriter with BufferedWriter versus just File KevinSimonson <kvnsmnsn@hotmail.com> - 2011-09-30 10:00 -0700
  Re: Creating a PrintWriter with BufferedWriter versus just File Lew <lewbloch@gmail.com> - 2011-09-30 12:55 -0700
  Re: Creating a PrintWriter with BufferedWriter versus just File Arne Vajhøj <arne@vajhoej.dk> - 2011-09-30 21:30 -0400
  Re: Creating a PrintWriter with BufferedWriter versus just File Roedy Green <see_website@mindprod.com.invalid> - 2011-10-01 05:06 -0700
    Re: Creating a PrintWriter with BufferedWriter versus just File Arne Vajhøj <arne@vajhoej.dk> - 2011-10-01 15:53 -0400

csiph-web