标签:
程序抛出这个异常的原因多数是因为在此[host:port]没有监听,那么该如何解决这个问题呢,如下
//使用不带有host的InterSocketAddress socket.bind(new InetSocketAddress(port)); //而不是使用它 socket.bind(new InetSocketAddress(host,port)); //当bind操作带有host时,只能通过指定host加端口访问,否则会抛出异常 java.net.ConnectException: Connection refused: no further information
[已解决] java.net.ConnectException: Connection refused: no further information
标签:
原文地址:http://www.cnblogs.com/gifisan/p/5406922.html