Android "Please ensure that adb is correctly located at" 错误

转自:http://blog.csdn.net/hyx1990/article/details/12681207

 

遇到问题描述:

运行Android程序控制台输出

    [2013-10-13 16:45:50 - ] The connection to adb is down, and a severe error has occured.
    [2013-10-1316:45:50 - ] You must restart adb and Eclipse.
    [2013-10-1316:45:50 - ] Please ensure that adb is correctly located at '<--此处显示adb.exe的全路径-->' and can be executed.

 

  问题分析1

关闭eclipse,打开windows任务管理器,查看进程中是否有adb.exe或adb.exe *32。

  解决方案1

如果有则关闭该进程,重新启动eclipse即可;

  问题分析2:

windows任务管理器中就找不到adb.exe或adb.exe *32的进程,可以尝试手动启动adb.exe ;如果手动启动后还找不到adb.exe进程,则    只有一种可能就是adb.exe进程的端口被占用,导致adb.exe未能正常启动所致(adb默认端口为5037)。

  解决方案2:

                   1、查看端口使用情况:

                   netstat -ano | findstr "5037"

                    TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       5004

                    2、发现5004占用5037端口,查看5004的task:

                    tasklist | findstr "5004"

                    wandoujia_daemon.exe          5004 Console                    1      4,276 K

                    打开windows管理器结束wandoujia_daemon.exe该进程,启动eclipse,如果adb.exe未能启动,手动启动即可;

posted @   咸鱼翻身  阅读(174)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示