我正在开发一个我正在使用WIFI Hotspot
的Android应用程序。在此应用程序中,我想获取Hotspot设备的IP address
。
场景是:
1)我有device A
Hotspot
。
2)现在我device B
与device A
到hotspot
已连接。
3)我想在IP address
获得device A
device B
。
首先有可能吗?如果是,那么请帮助我。感谢。
答案 0 :(得分:2)
嘿,你可能正在寻找路由器地址。
以下代码将为您提供Device A
Device B
的地址
final WifiManager manager = (WifiManager) super.getSystemService(WIFI_SERVICE);
final DhcpInfo dhcp = manager.getDhcpInfo();
final String address = Formatter.formatIpAddress(dhcp.gateway);