使用adb调试时,如果出现以下情况,可能是其他应用调用adb.exe导致的。
adb devices
emulator-5554 device
emulator-5582 host
emulator-5580 host
emulator-5584 host
其中5554,5582为端口号,可以通过netstat指令找出当前的进程pid与端口的对应关系。
netstat -ano > port.txt
然后在设备管理器中根据pid结束该进程就可以了。(查看-选择列 可以选择展示PID)
网友评论