eclipse The connection to adb is down, and a severe error has occured 解决方法

在eclipse中开发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 E:\Program Files\android-sdk-windows\platform-tools\adb.exe' and can be executed.

解决方法如下:

1、关闭eclipse,在cmd中执行:adb kill-server,然后adb start-server ,如果执行失败则转到方法2;
2、在任务管理器中杀死adb.exe,然后重启Eclipse(注:如果此时无法杀死adb.exe,则检查豌豆荚是否在运行,关闭豌豆荚后重试);
3、如果方法1和2都不管用,那么查看最后一句报错中:platform-tools中是否有adb.exe,如果没有则新建一个文件夹platform-tools,并且把tools中的文件全部复制到platform-tools中。

你可能感兴趣的:(eclipse,android,cmd,任务,tools)