Android获取WIFI状态下的IP地址以及MAC地址

Android获取WIFI下的IP地址以及MAC地址 

代码片段一:

	WifiManager wifiMan = (WifiManager) getSystemService(Context.WIFI_SERVICE);
	WifiInfo info = wifiMan.getConnectionInfo();
	String mac = info.getMacAddress();// 获得本机的MAC地址
	String ssid = info.getSSID();// 获得本机所链接的WIFI名称

	int ipAddress = info.getIpAddress();
	String ipString = "";// 本机在WIFI状态下路由分配给的IP地址

	// 获得IP地址的方法一:
	if (ipAddress != 0) {
	       ipString = ((ipAddress & 0xff) + "." + (ipAddress >> 8 & 0xff) + "." 
			+ (ipAddress >> 16 & 0xff) + "." + (ipAddress >> 24 & 0xff));
	}
	// 获得IP地址的方法二(反射的方法):
	try {
		Field field = info.getClass().getDeclaredField("mIpAddress");
		field.setAccessible(true);
		ipString = (String) field.get(info);
		System.out.println("obj" + ipString);
	} catch (Exception e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}

代码片段二:

 package android.net.wifi;

 import android.net.NetworkUtils;
 
 public int getIpAddress() {
        if (mIpAddress == null || mIpAddress instanceof Inet6Address) return 0;
        return NetworkUtils.inetAddressToInt(mIpAddress);
    }

代码片段三:

 package android.net;

 public class NetworkUtils {
/***
     * Convert a IPv4 address from an InetAddress to an integer
     * @param inetAddr is an InetAddress corresponding to the IPv4 address
     * @return the IP address as an integer in network byte order
     */
    public static int inetAddressToInt(InetAddress inetAddr)
            throws IllegalArgumentException {
        byte [] addr = inetAddr.getAddress();
        if (addr.length != 4) {
            throw new IllegalArgumentException("Not an IPv4 address");
        }
        return ((addr[3] & 0xff) << 24) | ((addr[2] & 0xff) << 16) |
                ((addr[1] & 0xff) << 8) | (addr[0] & 0xff);

        }

 } 

代码片段四:

<pre name="code" class="java" style="white-space: pre-wrap; word-wrap: break-word;">package android.net.wifi;

/** * Copy constructor * @hide */ public WifiInfo(WifiInfo source) { if (source != null) { mSupplicantState = source.mSupplicantState; mBSSID = source.mBSSID; mSSID = source.mSSID; mNetworkId = source.mNetworkId; mHiddenSSID = source.mHiddenSSID; mRssi = source.mRssi; mLinkSpeed = source.mLinkSpeed; mIpAddress = source.mIpAddress; mMacAddress = source.mMacAddress; mMeteredHint = source.mMeteredHint; } }

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值