一:错误提示 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 -a…
一.问题描述:     运行android程序控制台输出     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:\java\sdk\platform-tools\adb.exe' and can be executed. 二. 问题分析…
打开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…
使用eclipse开发ssh项目,本机8G内存,可是在打开一个表格后再打开一个页面.立即就内存溢出,网上搜到下面解决方式,未解决: 1.改动eclipse.ini參数 -vmargs -Xms1024m -Xmx2048m -XX:PermSize=1024M  -XX:MaxPermSize=2048M 无效 2.改动tomcat catalina.bat 里面添加设置: set JAVA_OPTS= -Xms1024m -Xmx2048m 无效 3.改动jre的參数: watermark/2…
今天看着视频 学习着 andriod ,启动 的时候 竟然报错 我试了N种google来的方法,都失效,现在把我的解决方法告诉大家,希望能帮到大家. 首先,我先罗列下我搜到的方法,大家也可以尝试. 1,关闭eclipse并在进程中杀掉adb.exe,然后重启. 2,如有真机连接,拔掉真机,重复1的步骤, 3,关掉eclipse,然后在命令行运行如下命令 adb kill-server adb start-server 然后重启eclipse 还有别的类似的办法就不再这里多说了, 我的问题最根本其…
问题是5037端口被占用: C:\>netstat -aon|findstr "5037" 看到了吗,端口被进程号为5037的进程占用,继续执行下面命令(也可以去任务管理器中查看pid对应的进程)查看PID对应的进程 C:\>tasklist|findstr "2016" 最后在任务管理器中找到"tadb.ext"的进程并将其结束掉,重启eclipse就可以了.…
重启eclipse之后仍然出现同样错误,此时可以尝试一下方法: cmd打开命令窗口: 之后重启eclipse,基本可以解决问题!…
Windows下可能会因为系统版本号不一样的原因导致有的系统5037port被系统进程占用.导致ADB无法使用5037port,从而导致ADB不能打开.在eclipse上跑Android程序的时候显示ADB server donot ACK. 以下我们来解决问题,在环境变量里加入ANDROID_ADB_SERVER_PORT .把它的值设为其它port,我改的是7035,这样就成功的把ADB的port换成了其它系统不用的port. OK了,这里感谢一下鼎桥终端的强哥.…
Eclipse中调试的时候报错 [2014-06-18 13:07:49 - DinnerBooker] The connection to adb is down, and a severe error has occured.[2014-06-18 13:07:49 - DinnerBooker] You must restart adb and Eclipse.[2014-06-18 13:07:49 - DinnerBooker] Please ensure that adb is co…
adb server is out of date.  killing完美解决 今天,久未出现的著名的“adb server is out of date.  killing”又发生了,在此,将解决方法记下,以便日后查看. 连接usb后重启adb-server: adb kill-server adb start-server adb devices 1. 错误信息: C:\Users\lizy>adb devices adb devicesadb server is out of date.…