我是 android 开发的新手,我正在做一个应用程序,它通过短信将 android 设备的 IP 地址发送到另一个设备。我需要像 192.168.0.4 这样的十进制 IP,而不是从下面的代码中获得的十六进制 IP。任何想法如何做到这一点,并感谢您的帮助。
public String getLocalIpAddress()
{
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()) {
return inetAddress.getHostAddress().toString();
}
}
}
} catch (SocketException ex) {
Log.e(TAG, ex.toString());
}
return null;
}