黑马程序员技术交流社区

标题: ConnectException异常 [打印本页]

作者: 廖艺聪    时间: 2012-3-8 11:02
标题: ConnectException异常
ConnectException
应该如何处理? 网络编程那部分的内容
作者: 冯旭君    时间: 2012-3-11 12:13
这个不能具体点吗?
Signals that an error occurred while attempting to connect a socket to a remote address and port. Typically, the connection was refused remotely (e.g., no process is listening on the remote address/port).

这显然是出现了连接异常,当试图连接一个远程的地址和端口好号的套接字时,发生一个错误。典型有,这个连接被远程拒绝。例如:在远程的地址的端口号没有相对应的程序来处理。


作者: 马东华    时间: 2012-5-8 18:01
  1. public class TCPCustom {

  2.         public static void main(String[] args) throws Exception
  3.         {
  4.                 Socket s=new Socket("202.113.53.47",10002);
  5.                 OutputStream out=s.getOutputStream();
  6.                 out.write("tcp ge men lai le ".getBytes());
  7.                 s.close();
  8.                
  9.         }
  10. }
复制代码
这是我的代码,也出现这种错误怎么解决啊?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2