所以,我在stackoverflow上读过很多问题,如果没有在socket上执行读/写操作就无法检测tcp套接字断开。
在.NET中,可以向套接字发送0字节并检查套接字是否仍然连接。
public bool isConnected()
{
byte[] buffer = new byte[1];
SocketError socketError = SocketError.SocketError;
socket.Send(buffer, 0, 0, SocketFlags.None, out socketError);
return ((socketError == SocketError.Success) || (socketError == SocketError.WouldBlock)); //if it will block then the socket is alive!
}
似乎无法在android / java中发送0字节,因为OutputStream.write()
不会执行0字节写操作。这是我从定义中得到的代码:
public void write(byte b[], int off, int len) throws IOException {
if (b == null) {
throw new NullPointerException();
} else if ((off < 0) || (off > b.length) || (len < 0) ||
((off + len) > b.length) || ((off + len) < 0)) {
throw new IndexOutOfBoundsException();
} else if (len == 0) {
return;
}
for (int i = 0 ; i < len ; i++) {
write(b[off + i]);
}
}
或者我错过了什么?
由于