public class IdentityOutputStream extends OutputStream
Note that this class NEVER closes the underlying stream, even when
close() gets called. Instead, the stream will be marked as
closed and no further output will be permitted.
| 构造器和说明 |
|---|
IdentityOutputStream(SessionOutputBuffer buffer,
OutputStream outputStream)
Default constructor.
|
public IdentityOutputStream(SessionOutputBuffer buffer, OutputStream outputStream)
buffer - Session output bufferoutputStream - Output streampublic void close()
throws IOException
close 在接口中 Closeableclose 在接口中 AutoCloseableclose 在类中 OutputStreamIOException - If an I/O problem occurs.public void flush()
throws IOException
flush 在接口中 Flushableflush 在类中 OutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write 在类中 OutputStreamIOExceptionpublic void write(byte[] b)
throws IOException
write 在类中 OutputStreamIOExceptionpublic void write(int b)
throws IOException
write 在类中 OutputStreamIOExceptionCopyright © 2023. All rights reserved.