public static String getMacAddress(Context context) {
WifiManager wifiman = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
WifiInfo wifiinfo = wifiman.getConnectionInfo();
String strMacAddress = "";
if (wifiinfo.getMacAddress() != null) {
strMacAddress = wifiinfo.getMacAddress();
}
return strMacAddress;
}
'ANDROID' 카테고리의 다른 글
bmp to png 비트맵을 png파일로 저장하자. (0) | 2014.10.11 |
---|---|
인터넷 상태 확인 네트워크 상태. (0) | 2014.10.11 |
루팅 체크. (0) | 2014.10.11 |
한글만써야 할때. 안드로이드 한글 (0) | 2014.10.11 |
android e-mail email 이메일 (0) | 2014.10.11 |