android:獲取本機Mac地址及IP地址方法

原文地址


1、Android  獲取本機Mac 地址方法:

  

    需要在AndroidManifest.xml文件中添加權限:    

Java代碼  收藏代碼
  1. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />  

  

Java代碼  收藏代碼
  1. public String getLocalMacAddress() {  
  2.         WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);  
  3.         WifiInfo info = wifi.getConnectionInfo();  
  4.         return info.getMacAddress();  
  5.     }  

 

2、Android 獲取本機IP地址方法: 

  

Java代碼  收藏代碼
  1. public String getLocalIpAddress() {  
  2.         try {  
  3.             for (Enumeration<NetworkInterface> en = NetworkInterface  
  4.                     .getNetworkInterfaces(); en.hasMoreElements();) {  
  5.                 NetworkInterface intf = en.nextElement();  
  6.                 for (Enumeration<InetAddress> enumIpAddr = intf  
  7.                         .getInetAddresses(); enumIpAddr.hasMoreElements();) {  
  8.                     InetAddress inetAddress = enumIpAddr.nextElement();  
  9.                     if (!inetAddress.isLoopbackAddress()) {  
  10.                         return inetAddress.getHostAddress().toString();  
  11.                     }  
  12.                 }  
  13.             }  
  14.         } catch (SocketException ex) {  
  15.             Log.e("WifiPreference IpAddress", ex.toString());  
  16.         }  
  17.         return null;  
  18.     }  

 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章