3

我想获取机器的 MAC 地址..但是下面的书面代码仅在 Internet 连接到我的机器时显示 MAC 地址,否则它将返回 null ......我使用的是 Windows 7

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;

class test
{
    public static void main(String[] args)
    {
        InetAddress ip;
        try {
            ip = InetAddress.getLocalHost();

            System.out.println("The mac Address of this machine is :" + ip.getHostAddress());

            NetworkInterface network = NetworkInterface.getByInetAddress(ip);

            byte[] mac = network.getHardwareAddress();

            System.out.print("The mac address is : ");

            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < mac.length; i++){
                sb.append(String.format("%02X%s", mac[i],(i< mac.length - 1)?"-":""));
            }

            System.out.println(sb.toString());

        } 
        catch (UnknownHostException e) {
            e.printStackTrace();
        } 
        catch (SocketException e) {
            e.printStackTrace();
        }
    }
}
4

3 回答 3

6

试试这个它应该在 Linux 和 Windows 上都可以工作

public static void main(String[] args) {

    String command = "/sbin/ifconfig";

    String sOsName = System.getProperty("os.name");
    if (sOsName.startsWith("Windows")) {
        command = "ipconfig";
    } else {

        if ((sOsName.startsWith("Linux")) || (sOsName.startsWith("Mac"))
                || (sOsName.startsWith("HP-UX"))) {
            command = "/sbin/ifconfig";
        } else {
            System.out.println("The current operating system '" + sOsName
                    + "' is not supported.");
        }
    }

    Pattern p = Pattern
            .compile("([a-fA-F0-9]{1,2}(-|:)){5}[a-fA-F0-9]{1,2}");
    try {
        Process pa = Runtime.getRuntime().exec(command);
        pa.waitFor();
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                pa.getInputStream()));

        String line;
        Matcher m;
        while ((line = reader.readLine()) != null) {

            m = p.matcher(line);

            if (!m.find())
                continue;
            line = m.group();
            break;

        }
        System.out.println(line);
    } catch (Exception e) {
        e.printStackTrace();
    }

}
于 2013-01-01T11:00:35.530 回答
5

好像您正在尝试通过 IP 地址获取 MAC 地址。只有当您成功连接到 Internet时,才会存在 IP 地址。null否则,如您所说,它将是。

试试这个:NetworkInterface.getHardwareAddress()

如果您想要计算机上所有网络接口的 MAC 地址,请尝试以下操作:NetworkInterface.getNetworkInterfaces().


编辑:再次查看代码后,我意识到您已经实施了我的建议。但是,如果您有一个有效的 IP ,您只会尝试获取 MAC 地址。如果未连接到 Internet,您将没有有效的 IP。

   public static void main(String[] args) 
   { 
       NetworkInterface network;
       byte[] mac = network.getHardwareAddress();  
       System.out.print("The mac address is : ");  

       StringBuilder sb = new StringBuilder(); 

       for (int i = 0; i < mac.length; i++)
       { 
         sb.append(String.format("%02X%s", mac[i],(i< mac.length - 1)?"-":"")); 
       }     

       System.out.println(sb.toString());  
   } 
于 2012-08-09T13:41:34.257 回答
2

问题可能是由于当您的机器未连接到 Internet 时,您的网卡没有分配的 IP 地址。您正在尝试通过 IP 地址查找网络接口。

我建议您改为枚举所有网络接口,然后选择您需要的一个:

import java.net.*;
import java.util.*;

public class App {

    protected static String formatMac(byte[] mac) {
        if (mac == null)
            return "UNKNOWN";
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < mac.length; i++) {
            sb.append(String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""));
        }
        return sb.toString();
    }

   public static void main(String[] args) throws Exception {
       for(Enumeration<NetworkInterface> e
                    = NetworkInterface.getNetworkInterfaces();
               e.hasMoreElements(); )
       {
           NetworkInterface ni = e.nextElement();
           System.out.println(ni.getName() + " - " + formatMac(ni.getHardwareAddress()));
       }
   }
}

这应该可以解决问题并在没有任何 Internet 连接的情况下工作。

于 2012-08-09T13:50:31.423 回答