我想找到通过 USB 连接到安卓设备的台式电脑的 IP 地址。在堆栈溢出的每个线程和我发现返回设备 IP 地址的任何其他网站中。但我想要连接到 android 设备的台式电脑的 IP 地址。
有没有可用的Android API?
我想找到通过 USB 连接到安卓设备的台式电脑的 IP 地址。在堆栈溢出的每个线程和我发现返回设备 IP 地址的任何其他网站中。但我想要连接到 android 设备的台式电脑的 IP 地址。
有没有可用的Android API?
I don't this is possible, in general.
You might be able to implement something using a custom connection type, if possible on your phone, but then it would likely need PC-side support too.
你的朋友是arp
。具体来说,您可以读取/proc/net/arp
具有以下格式的文件
IP address HW type Flags HW address Mask Device
192.168.1.249 0x1 0x2 00:08:9b:bf:a9:fc * eth0
192.168.1.252 0x1 0x2 00:0d:a2:01:15:ed * eth0
192.168.1.172 0x1 0x0 00:00:00:00:00:00 * eth0
干杯,