我可以通过wifi连接到接入点的IP地址吗?

时间:2013-07-22 22:55:00

标签: android networking wifi

嗨,我是Android编程新手。我基本上试图连接到一个接入点并发送它来命令。通过wifi连接到它后,是否可以以编程方式获取它的IP地址,以便我可以与它建立http连接? 到目前为止,我知道我们可以获得设备IP,但不确定是否可以获得接入点IP。请帮忙。提前谢谢。

3 个答案:

答案 0 :(得分:3)

public static String getApIpAddr(Context context) {
    WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
    DhcpInfo dhcpInfo = wifiManager.getDhcpInfo();
    byte[] ipAddress = convert2Bytes(dhcpInfo.serverAddress);
    try {
        String apIpAddr = InetAddress.getByAddress(ipAddress).getHostAddress();
        return apIpAddr;
    } catch (UnknownHostException e) {
        e.printStackTrace();
    }
    return null;
}

private static byte[] convert2Bytes(int hostAddress) {
    byte[] addressBytes = { (byte)(0xff & hostAddress),
            (byte)(0xff & (hostAddress >> 8)),
            (byte)(0xff & (hostAddress >> 16)),
            (byte)(0xff & (hostAddress >> 24)) };
    return addressBytes;
}

答案 1 :(得分:0)

我假设您指的是设备所连接的接入点的外部(公共)IP地址。如果是这样,是的,有一种简单的方法可以获取设备所连接的接入点的公共IP地址。只需在Web服务器上设置一个脚本,该脚本将回显连接到它的任何客户端的IP地址(类似于www.whatismyip.com)。然后,您的设备只需要对脚本执行GET请求,这将返回设备所连接的接入点的外部IP。

答案 2 :(得分:0)

我用它来获取IP地址

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())
                         { 
                         //My IP address
                               String Ip= inetAddress.getHostAddress().toString();

                         }   
                       }
                  }

            }
     catch (SocketException e) 
     { 
       Log.e("Error occurred  ", e.toString());
      }