Package java.io
Class PipedOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.PipedOutputStream
-
public class PipedOutputStream extends OutputStream
-
-
Constructor Summary
Constructors Constructor Description PipedOutputStream()PipedOutputStream(PipedInputStream var0)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidconnect(PipedInputStream var0)voidflush()voidwrite(byte[] var0, int var1, int var2)voidwrite(int var0)-
Methods inherited from class java.io.OutputStream
write
-
-
-
-
Constructor Detail
-
PipedOutputStream
public PipedOutputStream()
-
PipedOutputStream
public PipedOutputStream(PipedInputStream var0) throws IOException
- Throws:
IOException
-
-
Method Detail
-
close
public void close() throws IOException- Overrides:
closein classOutputStream- Throws:
IOException
-
connect
public void connect(PipedInputStream var0) throws IOException
- Throws:
IOException
-
flush
public void flush() throws IOException- Overrides:
flushin classOutputStream- Throws:
IOException
-
write
public void write(byte[] var0, int var1, int var2) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(int var0) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
-