Java detect lost connection [duplicate]

Well, the best way to tell if your connection is interrupted is to try to read/write from the socket. If the operation fails, then you have lost your connection sometime.

So, all you need to do is to try reading at some interval, and if the read fails try reconnecting.

The important events for you will be when a read fails – you lost connection, and when a new socket is connected – you regained connection.

That way you can keep track of up time and down time.

Leave a Comment