广告
返回顶部
首页 > 资讯 > 移动开发 >Android 判断网络状态实例详解
  • 737
分享到

Android 判断网络状态实例详解

Android 2022-06-06 01:06:47 737人浏览 泡泡鱼
摘要

Android 判断网络状态实例详解 实例代码 package com.example.Android; import java.io.IOException; impo

Android 判断网络状态实例详解

实例代码


package com.example.Android; 
import java.io.IOException; 
import java.net.HttpURLConnection; 
import java.net.InetAddress; 
import java.net.NetworkInterface; 
import java.net.SocketException; 
import java.net.URL; 
import java.util.Enumeration; 
import android.content.Context; 
import android.net.ConnectivityManager; 
import android.net.NetworkInfo; 
import android.telephony.TelephonyManager; 
public class NetStatus { 
  public static int NET_CNNT_BaiDU_OK = 1; // 正常访问因特网状态 
  public static int NET_CNNT_BAIDU_TIMEOUT = 2; // 无法访问因特网状态 
  public static int NET_NOT_PREPARE = 3; // 网络未准备好 
  public static int NET_ERROR = 4; 
  private static int TIMEOUT = 3000; 
   
  public static int getNetState(Context context) { 
  try { 
    ConnectivityManager connectivity = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
    if (connectivity != null) { 
    NetworkInfo networkinfo = connectivity.getActiveNetworkInfo(); 
    if (networkinfo != null) { 
      if (networkinfo.isAvailable() && networkinfo.isConnected()) { 
      if (!connectionNetwork()) 
        return NET_CNNT_BAIDU_TIMEOUT; 
      else 
        return NET_CNNT_BAIDU_OK; 
      } else { 
      return NET_NOT_PREPARE; 
      } 
    } 
    } 
  } catch (Exception e) { 
  } 
  return NET_ERROR; 
  } 
   
  private static boolean connectionNetwork() { 
  boolean result = false; 
  HttpURLConnection httpUrl = null; 
  try { 
    httpUrl = (HttpURLConnection) new URL("http://www.baidu.com").openConnection(); 
    httpUrl.setConnectTimeout(TIMEOUT); 
    httpUrl.connect(); 
    result = true; 
  } catch (IOException e) { 
  } finally { 
    if (null != httpUrl) { 
    httpUrl.disconnect(); 
    } 
    httpUrl = null; 
  } 
  return result; 
  } 
   
  public static boolean is3G(Context context) { 
  ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
  NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo(); 
  if (activeNetInfo != null && activeNetInfo.getType() == ConnectivityManager.TYPE_MOBILE) { 
    return true; 
  } 
  return false; 
  } 
   
  public static boolean isWifi(Context context) { 
  ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
  NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo(); 
  if (activeNetInfo != null && activeNetInfo.getType() == ConnectivityManager.TYPE_WIFI) { 
    return true; 
  } 
  return false; 
  } 
   
  public static boolean is2G(Context context) { 
  ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
  NetworkInfo activeNetInfo = connectivityManager.getActiveNetworkInfo(); 
  if (activeNetInfo != null && (activeNetInfo.getSubtype() == TelephonyManager.NETWORK_TYPE_EDGE 
      || activeNetInfo.getSubtype() == TelephonyManager.NETWORK_TYPE_GPRS  
      || activeNetInfo.getSubtype() == TelephonyManager.NETWORK_TYPE_CDMA)) { 
    return true; 
  } 
  return false; 
  } 
   
  public static boolean isWifiEnabled(Context context) { 
  ConnectivityManager mgrConn = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
  TelephonyManager mgrTel = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
  return ((mgrConn.getActiveNetworkInfo() != null && mgrConn.getActiveNetworkInfo().getState() == NetworkInfo.State.CONNECTED)  
    || mgrTel.getNetworkType() == TelephonyManager.NETWORK_TYPE_UMTS); 
  } 
   
  public static String GetHostIp() { 
  try { 
    for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { 
    NetworkInterface intf = en.nextElement(); 
    for (Enumeration<InetAddress> ipAddr = intf.getInetAddresses(); ipAddr.hasMoreElements();) { 
      InetAddress inetAddress = ipAddr.nextElement(); 
      if (!inetAddress.isLoopbackAddress()) { 
      return inetAddress.getHostAddress(); 
      } 
    } 
    } 
  } catch (SocketException ex) { 
  } catch (Exception e) { 
  } 
  return null; 
  } 
   
  public static String getIMEI(Context context) { 
  TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); 
  return telephonyManager.getDeviceId(); 
  } 
} 

添加权限:访问网络权限


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

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:Android仿QQ微信实时监测网络状态Android BroadcastReceiver实现网络状态实时监听Android检查网络状态工具类详解android 监听网络状态的变化及实战的示例代码Android判断网络状态的代码Android 判断网络状态及开启网路Android 监听网络状态方法详解Android 广播监听网络状态详解及实例代码Android中利用NetworkInfo判断网络状态时出现空指针(NullPointerException)问题的解决方法Android使用观察者模式Observer实现网络状态监听


--结束END--

本文标题: Android 判断网络状态实例详解

本文链接: https://www.lsjlt.com/news/21829.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作