码迷,mamicode.com
首页 > 移动开发 > 详细

Android开发中adb启动失败adb连接异常的解决办法

时间:2014-12-19 11:48:06      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   ar   io   color   使用   sp   

 

一、情况描述:

  我们在使用eclipse开发有时候会出现adb连接异常中,有时候控制台会打印出来 adb connect异常

比如会出现下面这样 :

    [2014-12-18 16:18:26 - ] The connection to adb is down, and a severe error has occured.
    [2014-12-18 16:18:26 - ] You must restart adb and Eclipse.
    [2014-12-18 16:18:26 - ] Please ensure that adb is correctly located at ‘E:\adt-bundle-windows-x86_64-20140624\sdk\platform-tools\adb.exe‘ and can be executed.

 

二、解决办法

   这些大多数是其它程序占用了5037端口导致的,解决问题的思路就是查看是哪个程序占用了adb调试端口,然后结束掉它就行。

   使用命令如下:

       netstat -aon|findstr "5037"

         TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       18212

       tasklist|findstr "18212"

       kadb.exe          18212 Console                    1      1,260 K

      大家能够看到是一个叫着kadb.exe的程序在占用我们的adb端口,进入到任务管理器里面,找到它结束掉就行了。

          1.关闭kadb.exe

          2.adb kill-server

          3.adb start-server

          4.重启Eclipse

  bubuko.com,布布扣

Android开发中adb启动失败adb连接异常的解决办法

标签:android   style   blog   http   ar   io   color   使用   sp   

原文地址:http://www.cnblogs.com/yejiurui/p/4173521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!