码迷,mamicode.com
首页 > 移动开发 > 详细

android获取mac地址

时间:2014-11-11 14:26:01      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:android

1、<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>    
2、private String getLocalMacAddress() {  
    WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);  
    WifiInfo info = wifi.getConnectionInfo();  
    return info.getMacAddress();  
  }  

android获取mac地址

标签:android

原文地址:http://blog.csdn.net/u014600432/article/details/41010625

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!