我正在嘗試獲取設備的IP地址,即使用WIFI或3G連接。我得到IPV6格式的IP地址,這是不可理解的。我想IPV4格式的IP地址。我已經完成谷歌,但力德發現任何適當的解決方案。如何獲得IPV4格式的IP_ADDRESS
這裏是我使用得到一個設備的IP地址碼
public String getLocalIpAddress() {
try {
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();
System.out.println("ip1--:" + inetAddress);
System.out.println("ip2--:" + inetAddress.getHostAddress());
if (!inetAddress.isLoopbackAddress()) {
String ip = inetAddress.getHostAddress().toString();
System.out.println("ip---::" + ip);
EditText tv = (EditText) findViewById(R.id.ipadd);
tv.setText(ip);
return inetAddress.getHostAddress().toString();
}
}
}
} catch (Exception ex) {
Log.e("IP Address", ex.toString());
}
return null;
}
我得到這個輸出中:
ip1--:/fe80::5054:ff:fe12:3456%eth0%2
ip2--:fe80::5054:ff:fe12:3456%eth0
應該顯示如下:
192.168.1.1
請幫我解決..
不要忘記權限,以防止空結果: –
Vyacheslav
聲明「ipv4」的地方和聲明 – CrazyMind