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);
|
How can I obtain a I'd like to be able to do something like this:
|
||||
|
|
|
|
|||||||||
|
|
If you want to know what happens: All input from the reader is copied to the inputstream Something similar too:
More on input and output on The Really big Index |
|||
|
|
|
BufferedWriter constructor is not overloaded for accept readers right? what Buhb said was correct.
|
|||
|
|
|
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. |
|||
|
|