我正在尝试使用 wifimanager 将其他设备与我的 android 应用程序连接起来。我使用此代码获取我的 android 设备的 ip 地址。但我无法获得使用 wifi 的我的 android 设备的端口号。如何获取它???请帮我!!!!提前致谢...
wifiManager = (WifiManager)context.getSystemService(context.WIFI_SERVICE);
wifiInfo = wifiManager.getConnectionInfo();
int ipAddress = wifiInfo.getIpAddress();
ip_Address=String.format("%d.%d.%d.%d",(ipAddress & 0xff),(ipAddress >> 8 & `0xff),(ipAddress >> 16 & 0xff),(ipAddress >> 24 & 0xff));
`