Android adb.exe程序启动不起来

错误:
运行android程序控制台输出
The connection to adb is down, and a severe error has occured.
You must restart adb and Eclipse.
Please ensure that adb is correctly located at 'F:\Android_SDK\adt-bundle-windows-x86\sdk\platform-tools\adb.exe' and can be executed.

原因:

adb的端口被占用,其默认端口是5037


具体的解决方案:


Android adb.exe程序启动不起来_第1张图片


C:\Users\Administrator>netstat -ano|findstr "5037"
  TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       15592
C:\Users\Administrator>tasklist|findstr "15592"
kadb.exe                     15592 Console                    1      1,352 K
C:\Users\Administrator>


到任务管理器中找到kadb.exe 进程,然后结束进程,重启Eclipse


到这一步,问题基本上解决了。








你可能感兴趣的:(android,adb.exe)