标签:
打开Eclipse运行android 程序发现虚拟机启动不了提示 You must restart adb and Eclipse.
如下方式适用于端口占用的情况:
1.netstat -ano|findstr "5037"
结果为:TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 1500
2.根据后面端口为1500 再在tasklist查找是哪个进程占用此端口
tasklist|findstr "1500"
结果为:kadb.exe 1500 Console 1 1,376 K
3.查出kadb占用端口然后关闭进程
taskkill /f /im kadb.exe
4.重新启动Eclipse
You must restart adb and Eclipse.
标签:
原文地址:http://www.cnblogs.com/EncryptingLife/p/4229849.html