android ecplise开发中经常遇到的
the connection to adb is down and a severe error has occured 错误,经常是adb出现问题,监听端口有问题,按照下面两篇博客解决:
http://blog.csdn.net/beiminglei/article/details/7740685
这篇博客讲解如何解决这个问题,但是找进程号的时候有个问题,例如端口为5037的进程,用netstat -a | findstr "5037"查找起来特别的慢,要用“netstat -noa | findstr "5037"” 这样就快很多,找到进程再借助任务管理器杀掉
http://jingyan.baidu.com/article/84b4f5653386d260f7da3250.html
这篇文章,可以直接在windows终端里面用命令杀掉进程;
再使用时候还遇到一个问题,进程杀死后立刻重启,例如5037端口被反复占用,这时候可以先把手机拔掉和电脑的连接,再杀死运行,再连接手机即可
分享到:
相关推荐
在Android开发过程中,我们经常会遇到"The connection to adb is down"的问题。此问题出现时,通常伴随着构建失败、应用无法安装或调试异常等现象,严重影响了开发效率。本文将从多个角度对这一问题进行深入分析,并...
今天在Eclipse中运行Android项目时遇到”The connection to adb is down, and a severe error has occured”这个问题,如下图所示: 第一次遇到这个问题,上网查了一下原因,原来”The connection to adb is ...
在进行Android编程开发时,开发者经常会遇到"the connection to adb is down"的问题,这表明Android Debug Bridge(ADB)连接已经中断。ADB是连接开发者电脑和Android设备或模拟器进行通信的重要工具,当其出现连接...
经常遇到 Please ensure that adb is ... [2012-07-18 16:18:26 – ] The connection to adb is down, and a severe error has occured. [2012-07-18 16:18:26 – ] You must restart adb and Eclipse. [2012-07
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:\Program Files\Android\android-sdk\platform-tools\adb...
当控制台输出"The connection to adb is down, and a severe error has occured"时,表示ADB与Eclipse(或者现在可能是Android Studio)之间的连接已中断,导致无法进行正常的开发操作。常见的原因可能有以下几点: ...
这个问题通常表现为"The connection to adb is down",这涉及到ADB(Android Debug Bridge)的连接问题。本文将深入探讨这个问题的原因以及提供一系列的解决方案。 首先,我们要理解ADB在Android开发中的作用。ADB...
he connection to adb is down, and a severe error has occured.[2014-01-14 21:42:11 - myBluetooth] You must restart adb and Eclipse.[2014-01-14 21:42:11 - myBluetooth] Please ensure that adb is ...
在进行Android应用程序开发的过程中,开发者可能会遇到以下错误信息:“The connection to adb is down, and a severe error has occurred. You must restart adb and Eclipse...”。此错误通常伴随着ADB server未...
[2016-07-10 17:09:11 - QtActivity] The connection to adb is down, and a severe error has occured. [2016-07-10 17:09:11 - QtActivity] You must restart adb and Eclipse. [2016-07-10 17:09:11 - ...
[2012-07-18 16:18:26 - ] The connection to adb is down, and a severe error has occured. [2012-07-18 16:18:26 - ] You must restart adb and Eclipse. [2012-07-18 16:18:26 - ] Please ensure that adb ...
5. **The connection to adb is down, and a severe error has occurred** 解决方案包括: - 关闭任务管理器中的所有adb.exe进程。 - 重启Eclipse或你的IDE。 6. **The application has stopped unexpectedly** ...
在运行第一个Android示例应用时,可能会遇到adb连接错误,提示"The connection to adb is down, and a severe error has occurred"。这种情况下,可以按照以下步骤解决: 1. 关闭Eclipse并检查任务管理器,确认是否...