Interrupt a connecting socket

I have a GUI with a list of servers to connect to. If a user clicks a server it connects to it. If a user clicks a second server, it will disconnect the first and connect to the second. Each new connection runs in a new thread so that the program can perform other tasks.

However, if a user clicks a second server while the first is still connecting, there are two simultaneous connections.

I'm connecting using this, and connect() is the line that blocks:

Socket socket = new Socket();
socket.connect(socketAddress, connectTimeout);

I thought maybe Thread.currentThread().interrupt(); would work, but didn't.

Do I have to restructure my code a bit so that it continues making the first connection, but closes it straight after? Or is there actually a way to interrupt the connect method.


If you are using a blocking socket implementation, interrupting the thread won't 'cancel' or interrupt your socket connection. The only way of breaking out of the 'blocking call' is to 'close' the socket. You can expose a method on your Runnable tasks (eg cancel ) which close the socket and clean up the resources when the user tries connecting to a second server.

If you want you can have a look at my throwaway attempt at interrupting threads which make blocking calls.


Can you instead use a non-blocking socket? I'm not much of a Java expert, but it looks like SocketChannel is their non-blocking socket class.

Here is an example:

// Create a non-blocking socket and check for connections
try {
    // Create a non-blocking socket channel on port 80
    SocketChannel sChannel = createSocketChannel("hostname.com", 80);

    // Before the socket is usable, the connection must be completed
    // by calling finishConnect(), which is non-blocking
    while (!sChannel.finishConnect()) {
        // Do something else
    }
    // Socket channel is now ready to use
} catch (IOException e) {
}

Taken from here: http://www.exampledepot.com/egs/java.nio/NbClientSocket.html

Inside the while loop you can check for some shared notification that you need to be cancelled and bail out, closing the SocketChannel as you go.


I tried the suggested answers but nothing worked for me. So what I did was, instead of setting my connection timeout to 10 seconds I try to connect 5 times in a row with a connection timeout of 2 seconds. I also have a global variable boolean cancelConnection declared.

Every time a timeout exception is thrown, I can eather break out of or continue the loop based on the value of cancelConnection .

Here's a code snippet from an android app I'm writing:

try {
    SocketAddress socketaddres = new InetSocketAddress(server.ip,server.port);
    int max=5;
    for (int i = 1; i<=max; i++) {
        try {
            socket = new Socket();
            socket.connect(socketaddres, 2000);
            break;
        } catch (Exception e) {
            Log.d(TAG, "attempt "+i+ " failed");
            if (cancelConnection) {
                Log.d(TAG, "cancelling connection");
                throw new Exception();
            } else if (i==max) {
                throw new Exception();
            }
        }
    }
} catch (Exception e) {
    if (cancelConnection) {
            // Do whatever you would do after connection was canceled.
    } else {
            // Do whatever you would do after connection error or timeout
    }
}
链接地址: http://www.djcxy.com/p/51658.html

上一篇: Hadoop的第一个版本何时发布?

下一篇: 中断连接插座