Package java.io
Class OutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- Direct Known Subclasses:
ByteArrayOutputStream
,FileOutputStream
,FilterOutputStream
,ObjectOutputStream
,PipedOutputStream
public abstract class OutputStream extends Object
-
-
Constructor Summary
Constructors Constructor Description OutputStream()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
void
write(byte[] var0)
void
write(byte[] var0, int var1, int var2)
abstract void
write(int var0)
-
-
-
Method Detail
-
close
public void close() throws IOException
- Throws:
IOException
-
flush
public void flush() throws IOException
- Throws:
IOException
-
write
public void write(byte[] var0) throws IOException
- Throws:
IOException
-
write
public void write(byte[] var0, int var1, int var2) throws IOException
- Throws:
IOException
-
write
public abstract void write(int var0) throws IOException
- Throws:
IOException
-
-