Skip to content

Instantly share code, notes, and snippets.

@kuloud
Created June 14, 2016 07:05
Show Gist options
  • Select an option

  • Save kuloud/08d1b16afbf775893490ddc981152d41 to your computer and use it in GitHub Desktop.

Select an option

Save kuloud/08d1b16afbf775893490ddc981152d41 to your computer and use it in GitHub Desktop.
public static int ping(String url) {
try {
Process e = Runtime.getRuntime().exec("ping -c 1 -w 20 " + url);
int status = e.waitFor();
return status;
} catch (Exception e) {
// ignore
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment