2

我想解决下一个问题。我的设备处于 AP 模式(便携式 WiFi 热点)。It has to show IP of it. 另一台设备使用已知 IP 连接到该设备。它必须在没有任何 WiFi 路由器的情况下工作,只是设备到设备。如果无线电已经在 AP 模式下运行,如何获取 IP 地址?我有一些关于 AP 的代码:

public boolean setWifiApEnabled(WifiConfiguration config, boolean enabled) {         
       try {
        if (enabled) { // disable WiFi in any case
         mWifiManager.setWifiEnabled(false);
        }

        Method method = mWifiManager.getClass().getMethod(
          "setWifiApEnabled", WifiConfiguration.class,
          boolean.class);
        return (Boolean) method.invoke(mWifiManager, config, enabled);
       } catch (Exception e) {
        //Log.e(TAG, "", e);
        return false;
       }
      }

public int getWifiApState() {
       try {
        Method method = mWifiManager.getClass().getMethod(
          "getWifiApState");
        return (Integer) method.invoke(mWifiManager);
       } catch (Exception e) {
        //Log.e(TAG, "", e);
        return WIFI_AP_STATE_FAILED;
       }
      }

 public static boolean IsWifiApEnabled(Context context){ 
          boolean isWifiAPEnabled = false;        
          WifiManager wifi = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
          Method[] wmMethods = wifi.getClass().getDeclaredMethods();
          for(Method method: wmMethods){
              if(method.getName().equals("isWifiApEnabled")) {  
                  try {
                    isWifiAPEnabled = (Boolean) method.invoke(wifi);
                  } catch (IllegalArgumentException e) {
                    e.printStackTrace();
                  } catch (IllegalAccessException e) {
                    e.printStackTrace();
                  } catch (InvocationTargetException e) {
                    e.printStackTrace();
                  }
              }
          }
          return isWifiAPEnabled;
      }
 }

也许有一些技巧可以获取它的IP?请帮我。谢谢。

4

2 回答 2

1

我用它来确定IP地址:

    private String determineHostAddress() {
        try {
            for (Enumeration<NetworkInterface> nis = NetworkInterface.getNetworkInterfaces(); nis.hasMoreElements(); ) {
                NetworkInterface ni = nis.nextElement();
                if (!ni.isLoopback() && !ni.isVirtual() && ni.isUp() && !ni.isPointToPoint() && ni.getHardwareAddress() != null) {
                    for (Enumeration<InetAddress> ips = ni.getInetAddresses(); ips.hasMoreElements(); ) {
                        InetAddress ip = ips.nextElement();
                        if (ip.getAddress().length == 4) {
                            return ip.getHostAddress();
                        }
                    }
                }
            }
        } catch (Exception ignored) {}
        return null;
    }
于 2014-12-03T15:45:29.920 回答
-1

这可能不适用于您的情况,但在我的应用程序中,我计划显示热点的 IP 地址,以便我可以在连接到热点的另一台 Android 设备上输入它,以连接到在热点上运行的网络服务器。在这种情况下,客户端(连接到热点的设备)可以在连接到热点后简单地查询它所连接的网关的 IP 地址。这将始终是热点的 IP 地址。这是我的代码:

@SuppressWarnings("deprecation") // Deprecated because it doesn't handle IPv6 but wifimanager only supports IPV4 anyway
private String getGateway()
{
    final WifiManager wifiManager = (WifiManager) getContext().getSystemService(Context.WIFI_SERVICE);
    DhcpInfo dhcpInfo = wifiManager.getDhcpInfo();
    return Formatter.formatIpAddress(dhcpInfo.gateway);
}

顺便说一句,到目前为止,在我测试过的每个 Android 上,热点的 IP 地址始终是 192.168.43.1。根据这个问题,它在 Android 源代码中是硬编码的。

于 2014-12-05T18:15:39.133 回答