You must restart adb and Eclipse._移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > You must restart adb and Eclipse.

You must restart adb and Eclipse.

 2015/1/16 23:36:56  二毛鱼  程序员俱乐部  我要评论(0)
  • 摘要:打开Eclipse运行android程序发现虚拟机启动不了提示YoumustrestartadbandEclipse.如下方式适用于端口占用的情况:1.netstat-ano|findstr"5037"结果为:TCP127.0.0.1:50370.0.0.0:0LISTENING15002.根据后面端口为1500再在tasklist查找是哪个进程占用此端口tasklist|findstr"1500"结果为:kadb.exe1500Console11,376K3
  • 标签:adb Eclipse

打开Eclipse运行android 程序发现虚拟机启动不了提示  You must restart adb and Eclipse.

如下方式适用于端口占用的情况:

        1.netstat -ano|findstr "5037"

          结果为:TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       1500

        2.根据后面端口为1500 再在tasklist查找是哪个进程占用此端口 

          tasklist|findstr "1500"

          结果为:kadb.exe                      1500 Console                    1      1,376 K

        3.查出kadb占用端口然后关闭进程

          taskkill /f /im kadb.exe

        4.重新启动Eclipse

发表评论
用户名: 匿名