| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.OutputStream
java.io.FilterOutputStream
org.apache.commons.net.io.SocketOutputStream
public class SocketOutputStream
This class wraps an output stream, storing a reference to its originating socket. When the stream is closed, it will also close the socket immediately afterward. This class is useful for situations where you are dealing with a stream originating from a socket, but do not have a reference to the socket, and want to make sure it closes when the stream closes.
SocketInputStream| Field Summary | 
|---|
| Fields inherited from class java.io.FilterOutputStream | 
|---|
| out | 
| Constructor Summary | |
|---|---|
| SocketOutputStream(Socket socket,
                                     OutputStream stream)Creates a SocketOutputStream instance wrapping an output stream and storing a reference to a socket that should be closed on closing the stream. | |
| Method Summary | |
|---|---|
|  void | close()Closes the stream and immediately afterward closes the referenced socket. | 
|  void | write(byte[] buffer,
           int offset,
           int length)Writes a number of bytes from a byte array to the stream starting from a given offset. | 
| Methods inherited from class java.io.FilterOutputStream | 
|---|
| flush, write, write | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public SocketOutputStream(Socket socket,
                          OutputStream stream)
socket - The socket to close on closing the stream.stream - The input stream to wrap.| Method Detail | 
|---|
public void write(byte[] buffer,
                  int offset,
                  int length)
           throws IOException
write in class FilterOutputStreambuffer - The byte array to write.offset - The offset into the array at which to start copying data.length - The number of bytes to write.
IOException - If an error occurs while writing to the underlying
            stream.
public void close()
           throws IOException
close in interface Closeableclose in class FilterOutputStreamIOException - If there is an error in closing the stream
                         or socket.| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||