執行android程式控制臺輸出異常The connection to adb is down, and a severe error has occured

AND_YOU_with_ME發表於2017-04-13
   在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 'E:\SDK\platform-tools\adb.exe' and can be executed.

這種有很多情況,也有比較多的解決方法:
1、工作管理員 kill掉adb 或者重啟adb server

2、檢視工作管理員沒有adb,猜測是某個程式佔用了adb埠
5037為adb預設埠 檢視該埠情況如下:
檢視:cmd —— netstat -ano|findstr "5037"

TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 5408
TCP 127.0.0.1:5037 127.0.0.1:49542 ESTABLISHED 5408

發現5408佔用了 5037埠
直接在工作管理員裡面kill掉

1)、tasklist 可以找到工作管理員所有程式
2)、taskkilll /f /im 程式名1.exe /f /im 程式名2.exe .... 可以kill掉多個程式

3、重新開啟adb
adb kill-server
adb start-server
4、終極解決辦法--------
手機關機重啟,如果還是不行,那直接一點,關閉AS或者Eclipse,重啟電腦


相關文章