Java解决Client Socket连接服务端超时问题 您所在的位置:网站首页 tcp服务端和客户端连接不上 Java解决Client Socket连接服务端超时问题

Java解决Client Socket连接服务端超时问题

2024-05-27 00:15| 来源: 网络整理| 查看: 265

Socket中的异常和参数设置

在Socket编程中,客户端常使用Socket socket = new Socket(ip, port); 来连接服务器,但是如果服务器无响应的话,客户端就会长时间的无响应,解决方法是设置Socket超时参数,如下:

try { Socket mSocket = new Socket(); //实例化socket SocketAddress socketAddress = new InetSocketAddress(ip ,port); //获取sockaddress对象 mSocket.connect(socketAddress,timeout); //设置超时参数 //mSocket.setSoTimeout(30000);//设置的是读取/输入io流数据时的超时时间30 s } catch (IOException e) { //处理超时后的操作 } 注意:socket.setSoTimeout必须在connect之后设置,不然将不会生效。读操作将永远不会超时

一、错误示例

最近在写socket程序时,偶然发现程序被卡住很长时间,调试后发现是创建Socket时,采用的方式不对:

Socket s = new Socket(String host, String port);

当采用该方式创建Socket时,默认的链接超时时间为0(A timeout of zero is interpreted as an infinite timeout. The connection will then block until established or an error occurs.),也就意味着链接永不超时,直到发生链接超时异常,所以程序会被卡住,并最终抛出异常。

二、正确示例

若要设置链接超时,需要使用如下方式创建Socket:

Socket s = new Socket(); SocketAddress socketAddress = new InetSocketAddress(serverIp, port); s.connect(socketAddress, timeout);

解释一下上面的SocketAddress和InetSocketAddress,这两个类用于创建Socket连接地址,前者是抽象类,后者是前者的子类,通过构造方法来创建地址:

public InetSocketAddress(String hostname, int port)

参数:

hostname – 主机名,也可以是ipport – 端口号

另外,InetSocketAddress还提供了一些与网络相关的方法,比如常用的获取本机IP的方法:

public final InetAddress getAddress()

这个方法会返回一个InetAddress,然后通过InetAddress的方法获取IP,如下:

 

public String getHostAddress()

那么获取本机IP的代码就是:

// client就是上面创建的Socket String host_ip = client.getAddress().getHostAddress();

其中timeout就是设置的超时时间,当超时时间到时会抛出SocketTimeoutException而不会无限等待的去尝试链接。

设置从Socket读取数据超时

通过Socket方法setSoTimeout(int timeout),Javadoc关于该方法的的说明如下:

Enable/disable SO_TIMEOUT with the specified timeout, in milliseconds. 

With this option set to a non-zero timeout, a read() call on the InputStream associated with this Socket will block for only this amount of time.

If the timeout expires, a java.net.SocketTimeoutException is raised, though the Socket is still valid. 

The option must be enabled prior to entering the blocking operation to have effect. 

The timeout must be > 0. A timeout of zero is interpreted as an infinite timeout.  



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有