public class NullOutputStream
extends java.io.OutputStream
Constructor and Description |
---|
NullOutputStream()
NullOutputStream constructor comment.
|
Modifier and Type | Method and Description |
---|---|
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b)
Writes the specified byte to this output stream.
|
public void write(byte[] b) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(byte[] b, int off, int len) throws java.io.IOException
write
in class java.io.OutputStream
java.io.IOException
public void write(int b) throws java.io.IOException
write
is that one byte is written to the output stream.
The byte to be written is the eight low-order bits of the argument
b
. The 24 high-order bits of b
are
ignored.
Subclasses of OutputStream
must provide an implementation
for this method.
write
in class java.io.OutputStream
b
- the byte
.java.io.IOException
- if an I/O error occurs. In particular, an
IOException
may be thrown if the output
stream has been closed.