0

我正在尝试使用 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));

`

4

1 回答 1

0

当您谈论 Wifi 连接到的端口时,您实际上想要获取 Wifi 连接到的代理主机的代理端口。要获得此类设置,请使用以下库:

https://code.google.com/p/android-proxy-library/

还请看下面:

http://developer.android.com/reference/android/net/Proxy.html

没有与 Wifi 或 WLAN 相关的实际端口。为什么要获得港口?

于 2013-04-17T09:00:43.793 回答