加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Java > 正文

Android系统下检测Wifi连接互联网是否正常的代码

发布时间:2020-12-14 23:30:54 所属栏目:Java 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 /** * * 判断网络状态是否可用 * * @return true: 网络可用 ; false: 网络不可用 */ public boolean isConnectInternet(){ ConnectivityManager conMa

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

/**
 *
 * 判断网络状态是否可用
 *
 * @return true: 网络可用 ; false: 网络不可用
 */
  
public boolean isConnectInternet()
{
    ConnectivityManager conManager = (ConnectivityManager) test.this
            .getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo networkInfo = conManager.getActiveNetworkInfo();
    if (networkInfo == null || !networkInfo.isConnected())
    {
        return false;
    }
    if (networkInfo.isConnected())
    {
        return true;
    }
    return false;
}
/* 检查网络联机是否正常 */
public boolean checkInternetConnection(String strURL,String strEncoding)
{
    /* 最多延时n秒若无响应则表示无法联机 */
    int intTimeout = 10;
    try
    {
        HttpURLConnection urlConnection = null;
        URL url = new URL(strURL);
        urlConnection = (HttpURLConnection) url.openConnection();
        urlConnection.setRequestMethod("GET");
        urlConnection.setDoOutput(true);
        urlConnection.setDoInput(true);
        urlConnection.setRequestProperty("User-Agent","Mozilla/4.0"
                + " (compatible; MSIE 6.0; Windows 2000)");
  
        urlConnection.setRequestProperty("Content-type","text/html; charset=" + strEncoding);
        urlConnection.setConnectTimeout(1000 * intTimeout);
        urlConnection.connect();
        if (urlConnection.getResponseCode() == 200)
        {
            return true;
        }
        else
        {
            Log.d("getResponseCode=",urlConnection.getResponseMessage());
  
            return false;
        }
    }
    catch (Exception e)
    {
        e.printStackTrace();
        Log.d("emessage",e.getMessage());
        return false;
    }
}
  
/* 自定义BIG5转UTF-8 */
public String big52unicode(String strBIG5)
{
    String strReturn = "";
    try
    {
        strReturn = new String(strBIG5.getBytes("big5"),"UTF-8");
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return strReturn;
}
  
/* 自定义UTF-8转BIG5 */
public String unicode2big5(String strUTF8)
{
    String strReturn = "";
    try
    {
        strReturn = new String(strUTF8.getBytes("UTF-8"),"big5");
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return strReturn;
}

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读