您好,登錄后才能下訂單哦!
怎么在Java中跨平臺獲取MAC地址?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
首先介紹如何通過Java
的NetworkInterface
類的API
來獲取本機(jī)MAC
地址的方法,首先展示代碼:
public class MacUtil { public static void main(String[] args) { getMac().forEach(System.out::println); } /** * 獲取本機(jī) mac 地址集合 * * @return mac 地址集合 */ public static List<String> getMac() { List<String> list = new ArrayList<>(); try { Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces(); while (networkInterfaces.hasMoreElements()) { NetworkInterface networkInterface = networkInterfaces.nextElement(); Optional.ofNullable(networkInterface.getHardwareAddress()) .ifPresent(mac -> list.add(format(mac))); } } catch (Exception e) { e.printStackTrace(); } return list; } /** * 將 mac 字節(jié)數(shù)組格式化為全大寫并且使用 - 作為分隔符的字符串 * * @param mac 獲取到的 mac 字節(jié)數(shù)組 * * @return 格式化后的 mac 地址 */ private static String format(byte[] mac) { StringBuilder sb = new StringBuilder(); for (byte b : mac) { sb.append(String.format("%02X", b)).append("-"); } sb.deleteCharAt(sb.length() - 1); return sb.toString(); } }
通過以上代碼理論上即可獲取本機(jī)所有的MAC
地址,此外通過format
方法可以將獲取到的MAC
地址統(tǒng)一處理成XX-XX-XX-XX-XX-XX
的格式,這里之所以說是理論上,是因為我曾經(jīng)在別人的蘋果電腦上運(yùn)行,結(jié)果并沒有得到所有MAC
地址(沒有得到執(zhí)行ifconfig -a
得到的所有MAC
地址,而且還會出現(xiàn)llw0
這個網(wǎng)絡(luò)的MAC
地址一直變動),但是我在本地的虛擬機(jī)中運(yùn)行蘋果時卻也是正常,由于我自己沒有蘋果電腦,所以暫時也不清楚具體的原因,如果有知道的小伙伴,歡迎留言,提前感謝啦~~~
正如在上一部分中提到的,在某些情況下使用NetworkInterface
類并不能獲取到本機(jī)所有的MAC
地址,甚至還可能出現(xiàn)動態(tài)變化的情況(暫時不清楚原因)。因此,在這種情況下只能通過Java
的Runtime
類的exec
方法直接執(zhí)行命令了,當(dāng)然在大多數(shù)情況下還是建議使用NetworkInterface
類,不僅方便,而且萬一以后修復(fù)了上面的bug(不知道算不算是bug,還是我個人的問題),不對上述代碼做任何變動就可以得到自己執(zhí)行命令的效果了,說了那么多,先看看如果通過自己執(zhí)行命令獲取本機(jī)的所有MAC
地址吧,先直接展示代碼:
/** * 獲取 mac 地址工具類 v2 版 * * @date 2021/5/13 * @author zjw */ public class MacUtil { private static final String WIN_PREFIX = "win"; private static final String OS_NAME_PROPERTY = "os.name"; private static final String WIN_COMMAND = "ipconfig /all"; private static final String UNIX_COMMAND = "/sbin/ifconfig -a"; private static final String MAC_REGEX = "(([a-f0-9]{2}-){5}|([a-f0-9]{2}:){5})[a-f0-9]{2}"; private static final Pattern pattern = Pattern.compile(MAC_REGEX, Pattern.CASE_INSENSITIVE); public static void main(String[] args) { getMac().forEach(System.out::println); } /** * 根據(jù)不同操作系統(tǒng)執(zhí)行不同命令 * 獲取本機(jī) mac 地址集合 * * @return mac 地址集合 */ private static List<String> getMac() { try { String osName = System.getProperty(OS_NAME_PROPERTY).toLowerCase(); if (osName.startsWith(WIN_PREFIX)) { return getMacByCommand(WIN_COMMAND); } return getMacByCommand(UNIX_COMMAND); } catch (Exception e) { e.printStackTrace(); } return Collections.emptyList(); } /** * 通過正則表達(dá)式提取執(zhí)行命令得到的結(jié)果集中的 mac 地址 * 并調(diào)整得到的 mac 地址的格式 * * @param command 查看網(wǎng)絡(luò)信息的命令 * * @return mac 地址集合 */ private static List<String> getMacByCommand(String command) throws IOException { List<String> macList = new ArrayList<>(); List<String> strList = execCommand(command); for (String str : strList) { Matcher matcher = pattern.matcher(str); if (matcher.find() && matcher.end() == str.length()) { macList.add(matcher.group().replace(":", "-").toUpperCase()); } } return macList; } /** * 執(zhí)行命令并得到結(jié)果的每一行組成的字符串?dāng)?shù)組 * * @param command 查看網(wǎng)絡(luò)信息的命令 * * @return 執(zhí)行命令返回的所有數(shù)據(jù)行 */ private static List<String> execCommand(String command) throws IOException { List<String> strList = new ArrayList<>(); Process process = Runtime.getRuntime().exec(command); try (BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()))) { return br.lines().collect(Collectors.toList()); } catch (Exception e) { e.printStackTrace(); } process.destroy(); return strList; } }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。