IP 를 지정하는 MAC 코드는 다음과 같습니다.

507 단어
  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 

           ,      

좋은 웹페이지 즐겨찾기