Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.win8pro.globish;
- import java.net.InetAddress;
- /**
- * Created by Win 8 Pro on 7/7/2558.
- */
- public class internetCkeck {
- public static boolean isInternetAvailable() {
- try {
- InetAddress ipAddr = InetAddress.getByName("google.com");
- if (ipAddr.equals("")) {
- return false;
- } else {
- return true;
- }
- } catch (Exception e) {
- return false;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment