Package net.i2p.servlet.util
Class WriterOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- net.i2p.servlet.util.WriterOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class WriterOutputStream extends OutputStream
Treat a writer as an output stream. Quick 'n dirty, none of that "intarnasheeonaleyzayshun" stuff. So we can treat the jsp's PrintWriter as an OutputStream- Since:
- 0.9.33 consolidated from routerconsole and i2psnark
-
-
Constructor Summary
Constructors Constructor Description WriterOutputStream(Writer writer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(int b)
-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream, write, write
-
-
-
-
Constructor Detail
-
WriterOutputStream
public WriterOutputStream(Writer writer)
-
-
Method Detail
-
write
public void write(int b) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
-