NO.1 You must restart adb and Eclipse多种情形分析与解决方式

一:错误提示

The connection to adb is down, and a severe error has occured.

You must restart adb and Eclipse.

Please ensure that adb is correctly located at ‘D:\xxx\xxx\adb.exe’and can be executed.

二: 5037port被占用

a: 開始菜单 → 执行 → cmd → 回车执行

b: netstat -aon|findstr "5037" → 回车执行 → 得到5037port执行程序PID

c: tasklist|findstr "要查询的PID" → 回车执行 → 得到5037port执行程序的名称

d: 打开任务管理器 → 关闭查询到的程序,释放5037port

三:adb server意外终止

a: 重新启动adb server

四:因更新adt而导致adb server无法使用

a: 重新启动adb server → 重新启动后无效,则继续运行以下的步骤

a: 启动一个虚拟机,并保持启动

b: 重新启动Eclipse

五:系统找不到adb文件夹

a: android-sdk/tools

b: android-sdk/platform-tools

c: 将上述2个路径加入到系统环境变量path中.

时间: 2024-08-12 14:27:00

NO.1 You must restart adb and Eclipse多种情形分析与解决方式的相关文章

You must restart adb and Eclipse多种情形分析与解决方案

原文:You must restart adb and Eclipse多种情形分析与解决方案 一:错误提示 The connection to adb is down, and a severe error has occured.You must restart adb and Eclipse.Please ensure that adb is correctly located at ‘D:\xxx\xxx\adb.exe’and can be executed. 二: 5037端口被占用

you must restart adb and eclipse的相关解决办法

you must restart adb and eclipse的相关解决办法 分类: 常见开发问题解答2012-07-12 15:52 35938人阅读 评论(18) 收藏 举报 eclipsegoogle 今天一不小心遇到个问题,问题截图如下 我试了N种google来的方法,都失效,现在把我的解决方法告诉大家,希望能帮到大家. 首先,我先罗列下我搜到的方法,大家也可以尝试. 1,关闭eclipse并在进程中杀掉adb.exe,然后重启. 2,如有真机连接,拔掉真机,重复1的步骤, 3,关掉e

You must restart adb and 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

蛋疼问题汇总you must restart adb and eclipse

you must restart adb and eclipse 关掉eclipse,然后在命令行运行如下命令 adb kill-server adb start-server 然后重启eclipse AndroidManifest.xml file missing! 菜单 project - clean 改一下文件, 比如删个空格,然后保存就行

You must restart adb and Eclipse解决办法

遇到了几次这个问题:The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse.Please ensure that adb is correctly located at 'E:\setups\android\android-2.1_r01-windows\tools\adb.exe' and can be executed. 通过查找和实践,我总结了以下一些方法

you must restart adb and eclipse的相关解决办法(转)

1,关闭eclipse并在进程中杀掉adb.exe,然后重启. 2,如有真机连接,拔掉真机,重复1的步骤, 3,关掉eclipse,然后在命令行运行如下命令 adb kill-server adb start-server 然后重启eclipse you must restart adb and eclipse的相关解决办法(转)

eclipse运行Android项目出现“The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse. ”

重启eclipse之后仍然出现同样错误,此时可以尝试一下方法: cmd打开命令窗口: 之后重启eclipse,基本可以问题解决!

Windows下ADB默认的5037port被占用,解决方式。

Windows下可能会因为系统版本号不一样的原因导致有的系统5037port被系统进程占用.导致ADB无法使用5037port,从而导致ADB不能打开.在eclipse上跑Android程序的时候显示ADB server donot ACK. 以下我们来解决问题,在环境变量里加入ANDROID_ADB_SERVER_PORT .把它的值设为其它port,我改的是7035,这样就成功的把ADB的port换成了其它系统不用的port. OK了,这里感谢一下鼎桥终端的强哥.

eclipse 中properties文件乱码解决方式