Android获取IP地址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android获取IP地址相关的知识,希望对你有一定的参考价值。
try { for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) { if (!inetAddress.isLoopbackAddress()) { return inetAddress.getHostAddress().toString(); } } } Log.e(LOG_TAG, ex.toString()); } return null; }
以上是关于Android获取IP地址的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式获取android手机的IP地址......? [复制]
从Android应用程序获取设备的MAC地址和IP地址[重复]