指定IP的MAC 代码如下

指定IP的MAC 代码如下: Java code
System.out.println("192.168.1.187对应网卡的MAC是:");NetworkInterface ne=NetworkInterface.getByInetAddress(InetAddress.getByName("192.168.1.187"));byte[]mac=ne.getHardwareAddress();String mac_s=hexByte(mac[0])+":"+hexByte(mac[1])+":"+ hexByte(mac[2])+":"+hexByte(mac[3])+":"+ hexByte(mac[4])+":"+hexByte(mac[5]);System.out.println(mac_s); 程序运行结果: 192.168.1.187对应网卡的MAC是: 00:0c:f1:20:75:58 

工作组和计算机名字类似,可以到库里找

你可能感兴趣的:(指定IP的MAC 代码如下)