public java.io.OutputStream | getOutputStream()Returns an OutputStream through which you may write data to the server.
You should NOT close the OutputStream when you're finished
reading from it. Rather, you should call
{@link org.apache.commons.net.SocketClient#disconnect disconnect }
to clean up properly.
return _output_;
|