当有多个设备online时,命令行窗口通过adb连接指定设备方法

1. 通过adb devices命令获取所有online设备的serial number。

C:\Users\Administrator>adb devices

List of devices attached
emulator-5554   device
SH0A6PL00243    device

上面表示,当前有两个设备online,第一个emulator-5554是模拟器,后一个是真机会SH0A6PL00243。


2. 通过adb -s <serial number> cmd向设备发送adb命令。

 

比如:运行命令shell。

C:\Users\Administrator>adb -s SH0A6PL00243 shell

比如:down一个应用的数据库到本地f:\test目录下面。

C:\Users\Administrator>adb -s SH0A6PL00243 pull data/data/com.android.tencent/databases/AgendaDetails.db f:\test
555 KB/s (5120 bytes in 0.009s)


运行其它命令和运行pull命令一样的,只是在adb和cmd之间需要额外添加-s <serial number>即可。

当有多个设备online时,命令行窗口通过adb连接指定设备方法,布布扣,bubuko.com

当有多个设备online时,命令行窗口通过adb连接指定设备方法

上一篇:如何从Powerdesigner进行数据建模并生成SQL脚本


下一篇:(C# webservice 获取客户端IP疑难杂症)---试过n种方法都失败,获取代理服务器,访问者客户端真实IP