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 – 主机名,也可以是ip
- port – 端口号
另外,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.
本文详细解析了在Socket编程中如何正确设置连接和读取数据的超时时间,避免程序因服务器无响应而长时间卡住。介绍了正确的Socket创建方式及SocketAddress和InetSocketAddress的使用,强调了超时设置的重要性。
378

被折叠的 条评论
为什么被折叠?



