티스토리 뷰
public String getLocalIpAddress()
{
final String IP_NONE = "N/A";
final String WIFI_DEVICE_PREFIX = "eth";
String LocalIP = IP_NONE;
try {
for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
NetworkInterface intf = en.nextElement();
for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
InetAddress inetAddress = enumIpAddr.nextElement();
if (!inetAddress.isLoopbackAddress()) {
if( LocalIP.equals(IP_NONE) )
LocalIP = inetAddress.getHostAddress().toString();
else if( intf.getName().startsWith(WIFI_DEVICE_PREFIX) )
LocalIP = inetAddress.getHostAddress().toString();
}
}
}
} catch (SocketException e) {
Log.e(DEBUG_TAG, "getLocalIpAddress Exception:"+e.toString());
}
return LocalIP;
}
'개발 > 개발 자료' 카테고리의 다른 글
(Linux) iptables - 방화벽 관리하기 (0) | 2015.06.09 |
---|---|
(Linux) Centos7 에서 바뀐 start/stop/restart 명령어 (0) | 2015.06.09 |
(Linux) Centos 7 설치하기 ( mac 기준 ) (1) | 2015.06.09 |
(Linux) USB로 Mac에 Linux 설치하기 (모든버전 동일) (2) | 2015.06.07 |
(Linux) vi - readonly file 저장하기 (0) | 2015.06.07 |