(Android) 접속된 Wifi IP가져오기
public String getLocalIpAddress() { final String IP_NONE = "N/A"; final String WIFI_DEVICE_PREFIX = "eth"; String LocalIP = IP_NONE; try { for (Enumeration en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enumeration enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) { InetAddress inetAddress = enumIpAddr.next..
개발/개발 자료
2015. 6. 9. 16:05