Android Studio无法连接到调试设备。 我用的是windows
Connecting to the target VM, address: 'localhost:8600', transport: 'socket'
我认为有进程占用端口“8600”
当我在CMD中执行netstat -ano|findstr 8600
时,我发现了这个
TCP 127.0.0.1:8600 0.0.0.0 LISTENING 1948
过程PID是1948年
但当我执行taskkill /f /pid 1948
以通过它的PID来终止进程时,
它让我觉得没有进程的pid是1948年
我也无法在eclipse中调试,端口8601也被占用;
有人知道如何解决这个问题吗?