eclipse报错:
[2016-02-22 17:02:45 – test] The connection to adb is down, and a severe error has occured.
[2016-02-22 17:02:45 – test] You must restart adb and Eclipse.
[2016-02-22 17:02:45 – test] Please ensure that adb is correctly located at “D:\Program Files\Java\eclipse\sdk\platform-tools\adb.exe” and can be executed.
在cmd里使用命令 adb kill-server 然后 adb start-server 显示:
显示是正确开启了,端口也是默认的5037. 然后本人查看有没有程序占用了5037端口
发现被“6640”占用了,查看“6640”这个是什么程序
被adb本人占用了?
郁闷。百思不得其解啊。弄了一个下午了。
小弟向各位高手们求帮助了。
[2016-02-22 17:02:45 – test] The connection to adb is down, and a severe error has occured.
[2016-02-22 17:02:45 – test] You must restart adb and Eclipse.
[2016-02-22 17:02:45 – test] Please ensure that adb is correctly located at “D:\Program Files\Java\eclipse\sdk\platform-tools\adb.exe” and can be executed.
在cmd里使用命令 adb kill-server 然后 adb start-server 显示:
显示是正确开启了,端口也是默认的5037. 然后本人查看有没有程序占用了5037端口
发现被“6640”占用了,查看“6640”这个是什么程序
被adb本人占用了?
郁闷。百思不得其解啊。弄了一个下午了。
小弟向各位高手们求帮助了。
解决方案
10
有的时候,eclipse会占用端口,本人的电脑经常是sogou相关进程会占用,你用netstat -ano | findstr “5037”,查看是哪个进程占用这个端口,然后在任务管理器当中,进行结束该进程,就ok了
10