Android IP Address Get getDevicesIP(Context context)

Here you can find the source of getDevicesIP(Context context)

Description

get Devices IP

Declaration

public static String getDevicesIP(Context context) 

Method Source Code

//package com.java2s;
import android.content.Context;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;

public class Main {
    public static String getDevicesIP(Context context) {
        WifiManager wifiManager = (WifiManager) context
                .getSystemService(Context.WIFI_SERVICE);
        if (!wifiManager.isWifiEnabled()) {
            wifiManager.setWifiEnabled(true);
        }/*from w w  w .j a  va 2 s.c  o  m*/
        WifiInfo wifiInfo = wifiManager.getConnectionInfo();
        int ipAddress = wifiInfo.getIpAddress();
        String ip = (ipAddress & 0xFF) + "." + ((ipAddress >> 8) & 0xFF)
                + "." + ((ipAddress >> 16) & 0xFF) + "."
                + (ipAddress >> 24 & 0xFF);
        if (ip == null || ip.equals("0.0.0.0")) {

        }
        return ip;
    }
}

Related

  1. getHostAddress(int address)
  2. getLocalHostAddress()
  3. getIPAddress(boolean useIPv4)
  4. getTargetInetaddress(String target)
  5. getDevicesMac(Context context)
  6. getIPs()
  7. getIPv4StringByStrippingIPv6Prefix(String in)
  8. getIPV4NetwprkOrder(String theIp)