Android如何获取网络/ Wi-Fi IP

时间:2015-04-23 12:39:05

标签: android android-networking

我有一个问题,我想要获取我的移动IP

是网络还是Wi-Fi

我尝试了一些方法,但我不知道为什么我无法得到它

 public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        getLocalIpAddress();
    }
    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()){
                                    Log.e("IP", inetAddress.getHostAddress().toString());
                                    return inetAddress.getHostAddress().toString();
                                }
                    }
            }
        } catch (SocketException ex) {
            Log.e( "Error:" , ex.toString());
          }
        return null ;
        }
}

这是我的日志

fe80::a3c8:4c03:154:8e1d%rmnet_usb0

这是我的AndroidManifest

 <uses-permission android:name= "android.permission.INTERNET" />  
    <uses-permission android:name= "android.permission.ACCESS_WIFI_STATE" /> 
    <uses-permission android:name= "android.permission.ACCESS_NETWORK_STATE" />

3 个答案:

答案 0 :(得分:1)

Plz try this it may help you..?
 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 (Exception ex) {
              Log.e("IP Address", ex.toString());
          }
          return null;
      }

Add below permission in the manifest file.
   <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

答案 1 :(得分:0)

你可以试试这个:

private String getIPAddress(Context context) {

    WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
    WifiInfo wifiInfo = wifiManager.getConnectionInfo();
    int ip = wifiInfo.getIpAddress();
    return Formatter.formatIpAddress(ip);
}

答案 2 :(得分:0)

 Use this for getting device ip address:
 WifiManager wm = (WifiManager) this.getSystemService(this.WIFI_SERVICE);
    String ip = Formatter.formatIpAddress(wm.getConnectionInfo().getIpAddress());