码迷,mamicode.com
首页 > 数据库 > 详细

adb基础常用命令总结

时间:2018-08-31 19:30:17      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:uninstall   net   文件   设备   常用命令   sdcard   com   nes   ble   

1、adb devices 查看手机设备

2、adb install packsge(包路径)安装包

3、adb install -r packages(保留数据及缓存文件安装新包)

4、adb uninstall package (卸载包)

5、adb kill-server 关闭adb服务

6、adb start-server 启动adb服务

7、adb shell pm list packages 查看手机里面所有包名

8、adb shell pm list packages -3查看手机里面所有第三方包名

9、adb shell /system/bin/screencap -p /sdcard/xx.png 截频并保存文件在手机上为xx.Png

10、adb pull /sdcard/xx.png D:/xx.png 将手机xx.png文件保存到D盘文件下

11、adb push D:/xx.text /adcard/xx.text 将电脑文件导入手机

12、adb shell pm clear com.ablesky.ui.activity 清除缓存数据

13、adb shell am start -n com.ablesky.ui.activity/com.ablesky.activity.SplashActivity 启动程序

14、adb shell am force-stop com.ablesky.simpleness.activity 强制停止运行程序

15、adb logcat 查看日志

16、adb logcat > D:\log.txt 将日志打印到电脑上

17、netstat -aon|findstr "5037" 查看被占用端口对应的PID

18、 tasklist /fi “PID eq PID” 查看端口号对应的进程

19、 taskkill /pid 2027 /f  杀掉某进程

20、adb shell monkey -p 包名 100    指定APP产生随机事件100次 

21、adb shell monkey -p 包名 -v -v 100    指定APP产生随机事件100次并发送详细的activity信息  

adb基础常用命令总结

标签:uninstall   net   文件   设备   常用命令   sdcard   com   nes   ble   

原文地址:https://www.cnblogs.com/PanXY/p/9567128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!