开发者

BufferedReader to BufferedWriter

How can I obtain a BufferedWriter from a BufferedReader?

I'd like to be able to do something like this:

BufferedReader read  = new BufferedReader(new InputStreamReader(...)开发者_开发知识库);
BufferedWriter write = new BufferedWriter(read);


You can use the following from Apache commons io:

IOUtils.copy(reader, writer);

site here


JAVA 9 Updates

Since Java 9, Reader provides a method called transferTo with the following signature:

public long transferTo(Writer out)  throws IOException

As the documentation states, transferTo will:

Reads all characters from this reader and writes the characters to the given writer in the order that they are read. On return, this reader will be at end of the stream. This method does not close either reader or writer. This method may block indefinitely reading from the reader, or writing to the writer. The behavior for the case where the reader and/or writer is asynchronously closed , or the thread interrupted during the transfer, is highly reader and writer specific, and therefore not specified.

If an I/O error occurs reading from the reader or writing to the writer, then it may do so after some characters have been read or written. Consequently the reader may not be at end of the stream and one, or both, streams may be in an inconsistent state. It is strongly recommended that both streams be promptly closed if an I/O error occurs.

So in order to write contents of a Java Reader to a Writer, you can write:

reader.transferTo(writer);


If you want to know what happens:

All input from the reader is copied to the inputstream

Something similar too:

 private final void copyInputStream( InputStreamReader in, OutputStreamWriter out )      throws IOException
  {
    char[] buffer=new char[1024];
    int len;
    while ( ( len=in.read(buffer) ) >= 0 )
      {
      out.write(buffer, 0, len);
      }
  }

More on input and output on The Really big Index


BufferedWriter constructor is not overloaded for accept readers right? what Buhb said was correct.

BufferedWriter  writer = new BufferedWriter(
new FileWriter("filename_towrite"));    

IOUtils.copy(new InputStreamReader(new FileInputStream("filename_toread")), writer);
writer.flush();
writer.close();


You could use Piped Read/Writers (link). This is exactly what they're designed for. Not sure you could retcon them onto an existing buffered reader you got passed tho'. You'd have to construct the buf reader yourself around it deliberately.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜