问题描述:执行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。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。