How do you detect if Socket#close() has been called on a socket on the remote side?
|
|
|
||
|
|
|
|
The
Start the server, start the client. You'll see that it prints "connected: true" twice, even though the socket is closed the second time. The only way to really find out is by reading (you'll get -1 as return value) or writing (an |
||||
|
|
|
isConnected will return false if the socket has been closed on the remote side. |
||
|
|
|
|
you can also check for socket output stream error while writing to client socket. out.println(output); if(out.checkError()) { throw new Exception("Error transmitting data."); } |
||
|
|
