Skip to content

Instantly share code, notes, and snippets.

@aykuttasil
Created March 2, 2016 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aykuttasil/37a105017ee8b543d874 to your computer and use it in GitHub Desktop.
Save aykuttasil/37a105017ee8b543d874 to your computer and use it in GitHub Desktop.
public boolean isInternetAvailable() {
try {
InetAddress ipAddr = InetAddress.getByName("google.com"); //You can replace it with your name
if (ipAddr.equals("")) {
return false;
} else {
return true;
}
} catch (Exception e) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment