JAVA로 호스트의 Mac Address 알아내기
JAVA로 호스트의 Mac Address 알아내기 [code] import java.net.InetAddress; import java.net.NetworkInterface; public class MacAddressTest { public static void main(String[] args) { try { InetAddress addr = InetAddress.getLocalHost(); /* IP 주소 가져오기 */ String ipAddr = addr.getHostAddress(); System.out.println(ipAddr); /* 호스트명 가져오기 */ String hostname = addr.getHostName(); System.out.println(hostname); /* Netwo..
2009.01.22