:あなたは
に接続されている接続は、それはのような情報を持つウィンドウが表示されますpアドレスはこのメソッドを使用します。
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(LOG_TAG, ex.toString());
}
return null;
}
このメソッドがnullを返した場合、接続は使用できません。 メソッドが文字列を返す場合、この文字列には、3GまたはWiFiとは独立して現在デバイスで使用されているIPアドレスが含まれます。
[デバイスのIPアドレスを取得するにはどうすればいいですか?](http://stackoverflow.com/questions/6064510/how-to-get-ip-address-of-the-vice) –