当前位置:首页 > The connection to adb is down, and a severe error has occured 的解决方法

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

点击次数:1819  更新日期:2013-07-24

用eclipse来调试android程序的时候,有时会报The connection to adb is down, and a severe error has occured.的错误

解决方法如下
1.先把eclipse关闭.
2.运行cmd,并在cmd中cd转到你的android SDK 的platform-tools目录下
3.键入adb kill-server ,如果adb已经是关闭的,会提示 “server not running”
4.再输入 adb start-server  如果不成功会提示 daemon not running. starting it now on port  ***的

  而如果成功的话不提示任何语句的.这时再重新打开eclipse就可以正常运行模拟器的了.