(重置adb.exe)android关于The connection to adb is down, and a severe error has occured.这个问题的解决办法

转自:http://www.sjsjw.com/kf_mobile/article/3_24710_14072.asp

这里补充一个更简单的方法(和下面的方法一样的效果):

有时在打开模拟器的时候会出现The connection to adb is down, and a severe error has occured.这个问题,这个问题的解决办法有两个: 
方法一:找到adb.exe存放的地方(一般出现这个错误的时候,现在会提示adb.exe的路径),双击adb.exe让他运行就行了 
方法二:使用命令行,开始---运行---输入cmd,使用cmd命令行,然后在命令行中进入adb.exe所存放的路径,然后输入adb  kill-server,点击Enter键,然后再输入adb  start-server,点击Enter键,如果下面提示daemon  started  successfully,则表示adb.exe已经运行了,现在可以使用android 模拟器来运行你的程序了;(如下图所示)

注意:如果提示failed to start daemon,则表示这样还没有使adb.exe运行起来,还不能使用android模拟器,那么现在咱们就使用快捷键Ctrl+Alt+Delete打开任务管理器,在”进程“里面找到tadb.exe,然后点击结束进程,然后再重复方法二的操作,应该就可以成功运行adb.exe了(至于为什么选择结束进程tadb.exe的原因,我觉得可能是因为adb.exe与tadb.exe的端口是同一个,两个不能同时使用这个端口,只有它们当中的一个能使用这个端口)

时间: 2024-10-10 10:34:59

(重置adb.exe)android关于The connection to adb is down, and a severe error has occured.这个问题的解决办法的相关文章

The connection to adb is down, and a severe error has occured(Android模拟器端口被占用)

相信不少同学和我一样遇到这个问题,有时候搞的还要重启电脑,那究竟是什么原因导致的呢,很明显,你的端口被占用了,那下面给出终极解决方案 一.首先描述症状,如下图 二.出现问题了,首先确定你的sdk目录是不是真的在Console输出的那个位置,如果是的话.接下来现在就要看看到底是谁占用了端口.打开命令编辑器进入你的sdk下的platform-tools文件夹输入adb start-serevr  恭喜,说明你的端口被占用了 三.接下来需要确定被占用的端口号是多少,输入命令adb nodaemon s

android中The connection to adb is down,问题和解决

http://logger.iteye.com/blog/911977 自己总结的在android中常会出现的不好解决的问题和方法 (其中第三个方法经过了四天的折磨.....哎) 1.报错: BUILD FAILED D:\workspace\ganji\build.xml:144: The following error occurred while executing this line: D:\workspace\ganji\build.xml:271: Unable to delete

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

------------------------------ Android Launch! 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:\Android\adt-bundle-windows-x86_64-20140702\sdk\platform

The connection to adb is down, and a severe error has occured. Android ADB server didn't ACK * failed to start daemon. 解决方案

ADB server didn't ACK 这个问题会困恼很多的新手朋友,我以前刚开始做Android的时候也遇到过这个问题,不过自己百度,google啥的,也不知道怎么就给解决了,看到群里很多新手朋友都会问这个问题,说实话我也没有一个解决这个问题的终极方法(百试百灵的那种,哈哈),自己没遇到也没有认真的去对待他,今天,就是在今天,我打开Eclipse连上手机,准备调试程序,出现如下的信息 The connection to adb is down, and a severe error has

[Android] The connection to adb is down, and a severe error has occured

一.ADB server didn't ACK 在配置完Android环境后,运行第一个程序时,遇到了如下错误: ADB server didn't ACK * failed to start daemon * 它可能的原因是端口5037被占用,需要查找占用5037(Android默认)端口的PID,在cmd中输入: netstat -ano | findstr "5037" 输出进程: TCP    127.0.0.1:5037         0.0.0.0:0          

ADT中,运行Android程序出错:The connection to adb is down, and a severe error has occured

原文地址:http://www.crifan.com/android_adt_the_connection_to_adb_is_down__and_a_severe_error_has_occured/ [总结] 出现 The connection to adb is down, and a severe error has occured 的问题,主要是由于adb没法正常运行起来: 而adb没法运行起来,主要是其端口被占用了: 常见的,可能的占用adb端口的,是你当前电脑上和手机相关的管理软件

Android基础(2)error:The connection to adb is down, and a severe error has occured.

出现:The connection to adb is down, and a severe error has occured. 启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误 (1).先把eclipse关闭. (2)cmd 命令进入android\adt-bundle-windows\sdk\platform-tools文件中 (3)键入命令adb kill-server

Android 提示: The connection to adb is down, and a severe error has occured.

今天早上打开Eclipse,一直提示 The connection to adb is down, and a severe error has occured,无法执行程序.重新启动Eclipse.手机又一次连接电脑都无法解决,打开DDMS界面,找不到设备. 解决的方法例如以下: 1.进入DDMS界面,点击例如以下图的小三角(放在三角上提示view menu) 2.选择下拉列表的Reset  adb选项.问题解决.

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

启动android模拟器时.有时会报The connection to adb is down, and a severe error has occured.的错误.在网友说在任务管理器上把所有adb.exe关闭掉.重启eclipse.但试过不管用.所以在外国网站上找到一种可行的方法: 1.先把eclipse关闭. 2.在管理器转到你的android SDK 的platform-tools下, 如图: 3.键入adb kill-server ,如果adb关闭了会提示 server not ru