[안드로이드] Mac Address 구하기
·
Android
안녕하세요. 핸드폰의 mac address를 구하는 방법입니다. 스택 오버플로우 등에는 현재는 동작하지 않는 코드가 많더군요. 저도 그것 때문에 고생을 했는데 아래 함수는 잘 사용하고 있습니다. 핸드폰 Mac Address 구하기 public static String getMacAddress() { String interfaceName = "wlan0"; try { List interfaces = Collections.list(NetworkInterface.getNetworkInterfaces()); for (NetworkInterface intf : interfaces) { if (interfaceName != null) { if (!intf.getName().equalsIgnoreCase(interf..