本文介绍了如何在Windows 7命令提示符下编写ADB命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Eclipse中运行Android应用程序时遇到大问题!完成我的应用程序开发后,右键单击project> Run As> Android Application,我看到
I have a big problem in the run of Android app in eclipse! When I finished developing my app, and right click on project>Run As>Android Application, I see a
[2013-03-04 15:36:25 - DeviceMonitor] Connection attempts: 1
[2013-03-04 15:36:28 - DeviceMonitor] Connection attempts: 2
[2013-03-04 15:36:25 - DeviceMonitor] Connection attempts: 3
在控制台窗口中。
然后我打开命令提示符(在Win 7 32位中),然后看到
Then I opend my command-Prommpt (in Win 7 32-bit) and see
C:\user\saadati>
我如何在其中编写adb命令?喜欢 adb kill-server 等。
How I write adb commands in it? likes adb kill-server and etc.
推荐答案
首先转到Android-sdk路径->(像D:\RAJESH-ANDROID\android-sdk\平台工具)
并执行adb-kill服务器之类的命令
First go to Android-sdk Path -> (like D:\RAJESH-ANDROID\android-sdk\platform-tools)and execute the your commands like adb-kill server
like below :
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\raj>cd D:\RAJESH-ANDROID\android-sdk\platform-tools
C:\Users\raj>d:
D:\RAJESH-ANDROID\android-sdk\platform-tools>adb kill-server
D:\RAJESH-ANDROID\android-sdk\platform-tools>adb start-server
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
D:\RAJESH-ANDROID\android-sdk\platform-tools>
这篇关于如何在Windows 7命令提示符下编写ADB命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!