栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

Android 判断网络状态实例详解

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Android 判断网络状态实例详解

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 en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { 
    NetworkInterface intf = en.nextElement(); 
    for (Enumeration 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(); 
  } 
} 

添加权限:访问网络权限

  
  

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

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/159078.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号