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 void
close()
void
connect(PipedInputStream var0)
void
flush()
void
write(byte[] var0, int var1, int var2)
void
write(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:
close
in classOutputStream
- Throws:
IOException
-
connect
public void connect(PipedInputStream var0) throws IOException
- Throws:
IOException
-
flush
public void flush() throws IOException
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] var0, int var1, int var2) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(int var0) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
-