Adb因某种原因停了下来?

Pra*_*mar 3 android adb

有时我的adb断开了.为什么我会这样: -

[2011-09-27 17:39:43 - adb]
[2011-09-27 17:39:43 - adb]This application has requested the Runtime to terminate it in an     unusual way.
[2011-09-27 17:39:43 - adb]Please contact the application's support team for more     information.
[2011-09-27 17:39:49 - DeviceMonitor]Adb connection Error:An existing connection was     forcibly closed by the remote host
[2011-09-27 17:39:51 - DeviceMonitor]Connection attempts: 1
[2011-09-27 17:39:53 - DeviceMonitor]Connection attempts: 2
[2011-09-27 17:39:55 - DeviceMonitor]Connection attempts: 3
[2011-09-27 17:39:57 - DeviceMonitor]Connection attempts: 4
[2011-09-27 17:39:58 - DeviceMonitor]Connection attempts: 5
[2011-09-27 17:40:00 - DeviceMonitor]Connection attempts: 6
[2011-09-27 17:40:02 - DeviceMonitor]Connection attempts: 7
[2011-09-27 17:40:04 - DeviceMonitor]Connection attempts: 8
[2011-09-27 17:40:06 - DeviceMonitor]Connection attempts: 9
[2011-09-27 17:40:08 - DeviceMonitor]Connection attempts: 10
[2011-09-27 17:40:10 - DeviceMonitor]Connection attempts: 11
Run Code Online (Sandbox Code Playgroud)

任何帮助表示赞赏

Lal*_*ani 6

由于某些原因,有时adb会断开连接,因此在这种情况下您必须重置adb.

DDMS->Devices,你会看到reset adb在选项View Menu之外Screen Capture的选项.

在此输入图像描述


jjN*_*ord 6

重新启动adb的另一种方法是通过终端或命令行.根据您的路径中是否有adb,只需键入:

$ adb kill-server

$ adb start-server

如果adb不在您的路径中,那么:

$ path-to-sdk/platform-tools/adb kill-server

$ path-to-sdk/platform-tools/adb start-server

希望这可以帮助!