Is there a simple and safe way to convert a PrintWriter into a PrintStream?

8.5k views Asked by At

Is there a clean and simple way to convert an instance of java.io.PrintWriter into a java.io.PrintStream?

1

There are 1 answers

2
Bozho On BEST ANSWER

First obtain an OutputStream from the Writer. See this question

Then pass it as argument to the PrintStream constructor:

OutputStream os = new WriterOutputStream(writer);
PrintStream ps = new PrintStream(os);

Update: commons-io 2.0 has WriterOutputStream, so use it.