您好,登錄后才能下訂單哦!
這篇文章主要介紹使用Java代碼獲取Android移動終端Mac地址的案例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
如何使用Java代碼獲取Android移動終端Mac地址:
通過設備開通WiFi連接獲取Mac地址是最可取的,代碼如下:
/** * 設備開通WiFi連接,通過wifiManager獲取Mac地址 * * @author 高煥杰 */ public static String getMacFromWifi(Context context){ ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); State wifiState = connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).getState(); if(wifiState == NetworkInfo.State.CONNECTED){//判斷當前是否使用wifi連接 WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); if (!wifiManager.isWifiEnabled()) { //如果當前wifi不可用 wifiManager.setWifiEnabled(true); } WifiInfo wifiInfo = wifiManager.getConnectionInfo(); return wifiInfo.getMacAddress(); } return null; }
除了上面這種方法,網上還給出了另外兩種方法:
1、通過調用Linux的busybox命令獲取Mac地址:
/** * 通過調用Linux的busybox命令獲取Mac地址 * * @author 高煥杰 */ private static String getMacFromCallCmd(){ try { String readLine = ""; Process process = Runtime.getRuntime().exec("busybox ifconfig"); BufferedReader bufferedReader = new BufferedReader (new InputStreamReader(process.getInputStream())); while ((readLine = bufferedReader.readLine ()) != null) {//執行命令cmd,只取結果中含有"HWaddr"的這一行 if(readLine.contains("HWaddr")){ return readLine.substring(readLine.indexOf("HWaddr")+6, readLine.length()-1); } } }catch(Exception e) { //如果因設備不支持busybox工具而發生異常。 e.printStackTrace(); } return null; }
注意:這種方法在Android Pad中可以準確獲取到的Mac地址,但是在Android手機中無法準確獲取到。
2、通過查詢記錄了MAC地址的文件(文件路徑:“/proc/net/arp”)獲取Mac地址:
/** * 通過查詢記錄了MAC地址的文件(文件路徑:“/proc/net/arp”)獲取Mac地址 * * @author 高煥杰 */ private static String getMacFromFile(Context context){ String readLine =""; BufferedReader bufferedReader = null; try { bufferedReader = new BufferedReader(new FileReader(new File("/proc/net/arp"))); int rollIndex = 0; while((readLine = bufferedReader.readLine())!=null){ if(rollIndex == 1){ break; } rollIndex = rollIndex + 1; } } catch (IOException e) { e.printStackTrace(); } finally { if (bufferedReader != null) { try { bufferedReader.close(); } catch (IOException e) { e.printStackTrace(); } } } if(readLine !=null && readLine.length()>1){ String[] subReadLineArray = readLine.split(" "); int rollIndex = 1; for(int i = 0; i < subReadLineArray.length; ++i){ if(!TextUtils.isEmpty(subReadLineArray[i])){ if(rollIndex == 4){ return subReadLineArray[i]; } rollIndex = rollIndex + 1; } } } return null; }
注意:無論在Android Pad中還是在Android手機中,這種方法都無法準確獲取到Mac地址。
以上是“使用Java代碼獲取Android移動終端Mac地址的案例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。