码迷,mamicode.com
首页 > 数据库 > 详细

You must restart adb and Eclipse.

时间:2015-01-16 23:41:10      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:

打开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

You must restart adb and Eclipse.

标签:

原文地址:http://www.cnblogs.com/EncryptingLife/p/4229849.html

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