安卓开发 eclipse调试时出现下列问题怎么解决

The connection to adb is down, and a severe error has occured.
You must restart adb and Eclipse.

1 开始运行cmd
2 adb kill-server 杀死adb进程
3 adb start-server 开启adb进程
4 查看adb端口
  C:\Documents and Settings\Administrator>adb nodaemon server
  cannot bind 'tcp:5037'
5 查找adb的端口被谁占有
  netstat -ano | findstr "5037"
6 杀死该进程
  tasklist|find "5037"
7 重启adb
  adb start-server
8 以上动作多做几遍如果还不行

温馨提示:内容为网友见解,仅供参考
第1个回答  2013-09-03
重启ECLIPSE 实在不行就重启系统 可能是没有加载完成java环境追问

重启eclipse没用,重启系统那岂不是太麻烦了,有没有简单点的方法啊

相似回答
大家正在搜