Performs a single Ping
suggest changeThis example attempts a single Ping request. The ping command inside the runtime.exec
method call can be modified to any valid ping command you might perform yourself in the command line.
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(); }
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents