2009. 1. 22. 17:26ㆍ프로그래밍/Java
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);
/* NetworkInterface를 이용하여 현재 로컬 서버에 대한 하드웨어 어드레스를 가져오기 */
NetworkInterface ni = NetworkInterface.getByInetAddress(addr);
byte[] mac = ni.getHardwareAddress();
String macAddr = "";
for (int i = 0; i < mac.length; i++) {
macAddr += String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : "");
}
System.out.println(macAddr);
} catch (Exception e) {
e.printStackTrace();
}
}
}
[/code]
'프로그래밍 > Java' 카테고리의 다른 글
Java 개밸자 컨퍼런스에 다녀오다~ (0) | 2009.02.28 |
---|---|
초보적인 실수를 저지르다 ㅠㅠ (0) | 2009.02.09 |
자바 이미지 필터 (0) | 2009.02.03 |
enum 이란 놈을 변수명으로 쓰게 되면... (0) | 2009.01.29 |
NetworkInterface 클래스에 대한 샘플 (0) | 2009.01.29 |