socket類別中有一個方法sendUrgentData,它會往輸出流發送一個位元組的數據,只要對方Socket的SO_OOBINLINE屬性沒有打開,就會自動捨棄這個位元組(在Java 中是拋出例外),而SO_OOBINLINE屬性預設就是關閉的。
java判斷遠端是否斷開了連接:
try{ socket.sendUrgentData(0xFF); }catch(Exception ex){ reconnect(); }
用ping實作
package com.csdn.test; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class test { static BufferedReader bufferedReader; public static void main(String[] args) throws IOException { try { Process process = Runtime.getRuntime().exec("ping 192.168.1.104");//判断是否连接的IP; bufferedReader = new BufferedReader(new InputStreamReader(process .getInputStream())); String connectionStr = ""; while ((connectionStr = bufferedReader.readLine()) != null) { System.out.println(connectionStr); } } catch (IOException e) { e.printStackTrace(); } finally { bufferedReader.close(); } } }
ping的方法有個嚴重的BUG,就是你只能判斷對方是否連接網絡,而不能判斷客戶端是否開啟。
更多java知識請關注java基礎教學欄。
以上是java判斷socket是否斷開的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!