我正在尝试编写一个简单的程序来打开到本地地址的套接字 channel 。每当我运行此程序时,我都会收到连接被拒绝的异常

import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.nio.channels.SocketChannel;

public class testSocket {

        public static void main(String [] args) {
                try {
                        InetAddress addr = InetAddress.getByName("localhost");
                        InetSocketAddress remoteAddress = new InetSocketAddress(addr, 19015);

                        // Open a new Socket channel and set it to non-blocking
                        SocketChannel socketChannel = SocketChannel.open();
                        socketChannel.configureBlocking(false);

                        // Issue the Connect call on the remote address.
                        socketChannel.connect(remoteAddress);
                } catch (Exception e) {
                        e.printStackTrace();
                }
        }
}

我得到的异常(exception)是
java.net.ConnectException: Connection refused
        at sun.nio.ch.Net.connect(Native Method)
        at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:464)
        at testSocket.main(testSocket.java:17)

我在Sun Solaris和HP-UX上遇到此问题。在Linux机器上似乎工作正常。谁能让我知道为什么拒绝连接?我做了一个netstat -a并确认该端口没有被使用。

提前致谢!

最佳答案

从Javadoc中获取SocketChannel.connect()



当我在Linux上运行您的代码时,connect()返回false,因此也不异常(exception)。如果添加对socketChannel.finishConnect()的调用,您将看到与Solaris/HP-UX相同的拒绝连接异常。

我怀疑在Solaris/HP-UX上connect()返回true,因此立即引发异常。

10-08 01:37