android java.net.UnknownHostException:无法解析主机

时间:2018-09-10 11:43:54

标签: android exception connection

因此,我正在尝试将POST请求发送到IP地址,但是在此之前我发现了一种问题的解决方法。 要检查互联网连接是否正常,在创建“活动”时会调用以下方法:

public void checkInternectConnection() {
        AsyncTask.execute(() -> {

            try {
                InetAddress inAddress = InetAddress.getByName("https://google.com");
                if (inAddress.equals("")) {
                    networkAvilable = true;
                } else {
                    networkAvilable = false;
                }
            } catch (Exception e) {
                e.printStackTrace();
                networkAvilable = false;
            }
        });
}

执行此代码时,它总是捕获异常java.net.UnkonwnHostException: Unable to resolve host "https://google.com": No address associated with hostname.

我已经解决了该错误,我只能找到该应用没有互联网权限,但是我在android清单中已经知道该权限((<uses-permission android:name="android.permission.INTERNET" />

我也尝试使用http://google.com而不是https,但没有任何效果。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您需要像这样检查互联网连接:

private boolean isNetworkConnected() {
    ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);

    return cm.getActiveNetworkInfo() != null;
}

清单中

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

此方法实际上检查设备是否已连接到Internet(有可能连接到网络但未连接到互联网)。

public boolean isInternetAvailable() {
    try {
        InetAddress ipAddr = InetAddress.getByName("google.com"); 
        //You can replace it with your name
            return !ipAddr.equals("");

        } catch (Exception e) {
            return false;
    }
}