socket中判断服务器端是否断开,可以使用发送心跳包
问题出现了,当我一个线程传送正常数据包,另一个线程发送心跳包,检测服务器端是否断开连接
//利用心跳包检测服务器是否断开 class detectConnectionRun implements Runnable{ @Override public void run() { while(!isServerClosed){ int NUM=10; int count=NUM; int index=0; while(count>0){ //发送num次心跳包,若num次全部没有收到,说明断开 try { tcpSocket.sendUrgentData(0xff); } catch (IOException e) { e.printStackTrace(); index++; } count--; try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } if(index==NUM){//一次心跳包都没收到,说明断开 isServerClosed=true; } } try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } }
这样服务器端会处理接收数据流,但是又读不到数据,会抛出异常
可以设置socket.setOOBInline(true);,接收心跳数据
但是心跳数据会合并到正常数据中,如客户端传送“1”,服务器端接收"���1"
前面的是传送三个心跳包的结果。
其实心跳包,可以是自定义来实现,通过服务器端接收,又向客户端发送确认信息即可。这样可以解决问题。