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-64\sdk\platform-tools\adb.exe‘ and can be executed.


首先先查看相关路径下面是否有platform-tools文件夹或者platform-tools文件夹中是否有adb.exe文件,若均有也就是不是这两个原因引起的,则执行以下两个步骤。

第一步:

开始->运行->cmd 中敲入“cd 放置adb.exe文件的路径”,例如“cd D:\adt-bundle-windows-64\sdk\platform-tools”;

敲入netstat -aon|findstr "5037"回车(5037为adb默认端口),如无输出则说明该端口未被占用,则直接进行第二步。

否则:

例如输出的该端口情况如下:

      TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       6540

发现6540占用了5037端口,敲入tasklist|findstr "6540"回车查看6540端口的进程是什么

例如

        wandoujia_daemon.exe          6540 Console                    1      4,276 K

那么打开任务管理器的进程结束wandoujia_daemon.exe进程。


第二步:

cmd跳到放置adb.exe文件路径下,

敲入adb kill-server回车,再敲入adb start-server,最后重启Eclipse。

本文出自 “8422499” 博客,请务必保留此出处http://8432499.blog.51cto.com/8422499/1438178

Eclipse搭建Android开发环境时adb.exe程序无法执行,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。