0
点赞
收藏
分享

微信扫一扫

adb shell 命令查看android 应用程序 创建的 sqlite 数据库


通过 adb shell 可以执行sqlite3 命令,android 通过 ​​sqlite3​

例子:

adb connect remote_ip:5555

 adb shell

//打开应用程序创建的数据库

sqlite3  /data/data/packetge_name/databases/test.db

SQLite version 3.3.12
Enter ".help" for instructions
.... enter commands, then quit...
sqlite> .exit 




举报

相关推荐

0 条评论