andriod开发中关于adb连接的一个典型问题:

问题现象:
新建一个andriod项目,然后run as,出现如下界面:
[2014-02-13 16:36:54 - 手电筒] ------------------------------
[2014-02-13 16:36:54 - 手电筒] Android Launch!
[2014-02-13 16:36:54 - 手电筒] The connection to adb is down, and a severe error has occured.
[2014-02-13 16:36:54 - 手电筒] You must restart adb and Eclipse.
[2014-02-13 16:36:54 - 手电筒] Please ensure that adb is correctly located at ‘D:\adt-bundle-windows-x86-20131030\sdk\platform-tools\adb.exe‘ and can be executed.

于是百度:
参考:

http://hi.baidu.com/yore2003/item/a7d9e5c125266e0bc710b2a3http://www.cnblogs.com/longqi293/archive/2012/06/19/2554801.html

最终解决问题:
通常做法是---->cmd
cd到D:\adt-bundle-windows-x86-20131030\sdk\platform-tools这个目录下
adb kill-server:

最终解决问题:
通常做法是---->cmd
cd到D:\adt-bundle-windows-x86-20131030\sdk\platform-tools这个目录下
adb kill-server:
出现

andriod开发中关于adb连接的一个典型问题:

然后在adb start-server

andriod开发中关于adb连接的一个典型问题:

显然,adb server并没有运行,则表名本该adb用的端口被占用了,参考

http://blog.sina.com.cn/s/blog_9d708b4f010155gp.html,了解到是5037端口被占用,遂查看:

andriod开发中关于adb连接的一个典型问题:

andriod开发中关于adb连接的一个典型问题:

发现3756占用了5037端口,继续查看3756的task,如下:andriod开发中关于adb连接的一个典型问题:
表明是sjk_daemon.exe在使用,于是打开任务管理器,找到进程
andriod开发中关于adb连接的一个典型问题:

原来是金山毒霸里的,应该是手机助手的程序,于是直接退出了金山,再运行就正常了。

另附:

http://blog.csdn.net/mad1989/article/details/9628495,这篇博客也挺好。

andriod开发中关于adb连接的一个典型问题:

上一篇:Photoshop打造动感的流体飞溅艺术花朵造型


下一篇:一个项目涉及到的50个Sql语句