您的位置:首页 > 移动开发 > Android开发

Android Please ensure that adb is correctly located at " "

2015-07-24 21:23 555 查看
在Eclipse中运行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 'D:\adt-bundle-windows-x86_64-20130219\sdk\platform-tools\adb.exe' and can be executed.

1.  解决问题:

     百度google大家多说的是任务管理器 kill掉adb 或者重启adb server,但我任务管理器就没有adb ,猜测是某个程序占用了adb端口。于是按此思路查找。

5037为adb默认端口 查看该端口情况如下:

       netstat -aon|findstr "5037"

      TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       10748

发现10748占用了 5037端口,继续查看10748的task,发现是kadb.exe.如下所示

        tasklist|findstr "10748"

        kadb.exe          10748 Console                   

接下来问题就好解决了,在任务管理器kill掉kadb.exe  .

2.重启eclipse,运行android项目,问题解决。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 虚拟机 eclipse