原文:You must restart adb and 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 ‘D:\xxx\xxx\adb.exe’and can be executed.
.net
二: 5037端口被占用rest
a: 开始菜单 → 运行 → cmd → 回车执行
b: netstat -aon|findstr "5037" → 回车执行 → 获得5037端口运行程序PID
c: tasklist|findstr "要查询的PID" → 回车执行 → 获得5037端口运行程序的名称
d: 打开任务管理器 → 关闭查询到的程序,释放5037端口
orm
三:adb server意外终止server
a: 重启adb server
blog
四:因更新adt而致使adb server没法使用ip
a: 重启adb server → 重启后无效,则继续执行下面的步骤
a: 启动一个虚拟机,并保持启动
b: 重启Eclipse
get
五:系统找不到adb目录cmd
a: android-sdk/tools
b: android-sdk/platform-tools虚拟机
c: 将上述2个路径添加到系统环境变量path中.