執行單個 Ping

此示例嘗試單個 Ping 請求。runtime.exec 方法呼叫中的 ping 命令可以修改為你可以在命令列中執行的任何有效 ping 命令。

try {
    Process ipProcess = runtime.exec("/system/bin/ping -c 1 8.8.8.8");
    int exitValue = ipProcess.waitFor();
    ipProcess.destroy();
    
    if(exitValue == 0){
        // Success
    } else { 
        // Failure
    }
} catch (IOException | InterruptedException e) {
    e.printStackTrace();
}