The connection to adb is down, and a severe error has occured

今天做项目的时候遇到这样的问题:

运行android程序控制台输出

[2013-06-25 11:10:32 - MyWellnessTracker] The connection to adb is down, and a severe error has occured. 
[2013-06-25 11:10:32 - MyWellnessTracker] You must restart adb and Eclipse. 
[2013-06-25 11:10:32 - MyWellnessTracker] Please ensure that adb is correctly located at 'E:\SDK\platform-tools\adb.exe' and can be executed.

有很多种情况,所以也有很多解决方法:

1、任务管理器 kill掉adb 或者重启adb server

2、查看任务管理器没有adb,猜测是某个程序占用了adb端口

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

查看:cmd ―― netstat -aon|findstr "5037"

 TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       4292
 TCP    127.0.0.1:5037         127.0.0.1:49542        ESTABLISHED     11416

发现占用了 5037端口的有两个,分别是4292和11416,继续查看 4292的task:

查看: tasklist|findstr " 4292"

360CleanHelper.exe                     4292 Console                    1      2,980 K

发现是360CleanHelper.exe占用,直接在任务管理器里面kill掉或

taskkill /f /im 360CleanHelper.exe

//注:如果提示“拒绝访问”,则继续点击“结束进程”

然后查看: tasklist|findstr " 11416"

phoneService.exe                     11416 Console                    1      2,980 K

这次是phoneService.exe占用,直接在任务管理器里面kill掉或

taskkill /f /im phoneService.exe

Tip:1)、tasklist 可以找到任务管理器所有进程

          2)、taskkilll /f /im 程序名1.exe /f /im 程序名2.exe .... 可以kill掉多个程序

3、重新开启adb

adb kill-server 
adb start-server

4、若重新开启adb不管用,则关闭eclipse,到目录E:\adt-bundle-windows-x86-20130917\sdk\platform-tools双击“adb.exe”,再打开eclipse。

你可能感兴趣的:(TO,Connection,error,adb,down,and,has,is,a,the,severe,occured)