我正在使用 NetworkInterface 类来获取 MAC 地址,但我的代码 NetworkInterface ni = NetworkInterface.getByInetAddress(inetAddr); .我在 ni 对象中得到空值,请建议我在局域网上获取设备的 mac 地址的方法。
提前致谢。
我正在使用 NetworkInterface 类来获取 MAC 地址,但我的代码 NetworkInterface ni = NetworkInterface.getByInetAddress(inetAddr); .我在 ni 对象中得到空值,请建议我在局域网上获取设备的 mac 地址的方法。
提前致谢。
试试这个代码,
import java.io.*;
import java.net.*;
import java.util.*;
import java.util.regex.*;
public class GetMac
{
public static void main(String[] args)
throws IOException
{
String address = new GetMac().getMacAddress();
System.out.println(address);
}
public String getMacAddress() throws IOException
{
String macAddress = null;
String command = "ipconfig /all";
Process pid = Runtime.getRuntime().exec(command);
BufferedReader in =
new BufferedReader(
new InputStreamReader(pid.getInputStream()));
while (true) {
String line = in.readLine();
if (line == null)
break;
Pattern p = Pattern.compile(".*Physical Address.*: (.*)");
Matcher m = p.matcher(line);
if (m.matches()) {
macAddress = m.group(1);
break;
}
}
in.close();
return macAddress;
}
}
使用以下行获取主机
InetAddress address = socket.getInetAddress();
String hostIP = addresss.getHostAddress();
Ashish 使用这个 java 代码,如果找到任何运气,请告诉我。如果有帮助,请查看此链接, 如何获取 WiFi 网络接口的 MAC 地址?