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端口被占用

a: 开始菜单 → 运行 → cmd → 回车执行
    b: netstat -aon|findstr "5037" → 回车执行 → 得到5037端口运行程序PID
    c: tasklist|findstr "要查询的PID" → 回车执行 → 得到5037端口运行程序的名称
    d: 打开任务管理器 → 关闭查询到的程序,释放5037端口

三: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-10-11 22:11:21

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

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|f

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,基本可以问题解决!

电脑一直弹出来adb.exe已停止工作的对话框解决方案

电脑一直弹出来adb.exe已停止工作的对话框解决方案 你可以用控制面板里面的删除程序-网银插件(貌似是工商的) 是 window键+r 输入msconfig 然后启动项 把xx银行网银前面的对号去掉然后重启. 也可能这个adb是别的软件,卸载了该软件就可以了. 占用了同一个端口.重启adb.

Eclipse Memory Analyzer 分析内存泄露

OutOfMemoryError示例 代码 package com.walson.heap; import java.util.ArrayList;import java.util.List; /** * java 堆溢出 *  * -verbose:gc -Xms20m -Xmx20m -XX:+HeapDumpOnOutOfMemoryError * @author gjh1 * */public class HeapOOM { static class OOMObject{