java 程序中如何獲取 MAC 地址?
在Java程序中,可以通過Java標(biāo)準(zhǔn)庫的 java.net
包中的 NetworkInterface
類來獲取本機(jī)的MAC地址。
以下是示例代碼:
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.Enumeration;
public class MacAddress {
??? public static void main(String[] args) {
??????? try {
??????????? // 獲取本地主機(jī)信息
??????????? InetAddress inetAddress = InetAddress.getLocalHost();
??????????? System.out.println("本機(jī)的IP地址是:" + inetAddress.getHostAddress());
??????????? // 獲取所有網(wǎng)絡(luò)接口
??????????? Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
??????????? // 遍歷所有網(wǎng)絡(luò)接口
??????????? while (networkInterfaces.hasMoreElements()) {
??????????????? NetworkInterface networkInterface = networkInterfaces.nextElement();
??????????????? // 獲取MAC地址
??????????????? byte[] macBytes = networkInterface.getHardwareAddress();
??????????????? if (macBytes != null) {
??????????????????? StringBuilder macBuilder = new StringBuilder();
??????????????????? for (int i = 0; i < macBytes.length; i++) {
??????????????????????? macBuilder.append(String.format("%02X%s", macBytes[i], (i < macBytes.length - 1) ? "-" : ""));
??????????????????? }
??????????????????? System.out.println("MAC地址:" + macBuilder.toString());
??????????????? }
??????????? }
??????? } catch (UnknownHostException e) {
??????????? e.printStackTrace();
??????? } catch (SocketException e) {
??????????? e.printStackTrace();
??????? }
??? }
}
該程序首先獲取本機(jī)的IP地址,然后通過 NetworkInterface.getNetworkInterfaces()
方法獲取所有的網(wǎng)絡(luò)接口。接著遍歷所有的網(wǎng)絡(luò)接口,通過 NetworkInterface.getHardwareAddress()
方法獲取每個(gè)網(wǎng)絡(luò)接口的MAC地址,并將其格式化輸出。
需要注意的是,該方法只能獲取本機(jī)的MAC地址,無法獲取其他設(shè)備的MAC地址。另外,在一些操作系統(tǒng)中,可能需要管理員權(quán)限才能獲取MAC地址。
java 程序中如何獲取 MAC 地址?的評論 (共 條)
