私はAndroid開発に不慣れで、AndroidデバイスのIPアドレスをSMSで別のデバイスに送信するアプリケーションを実行しています。以下のコードから取得した 16 進数ではなく、この 192.168.0.4 のように 10 進数で 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;
}