How can I view my Android Apps database information?

安稳与你 提交于 2019-12-09 18:23:56

问题


I've tried to view the db file from the File Explorer in Eclipse but I can't open the file or copy it to another location to open. I don't have a rooted phone so I was trying to view the db from the app on my emulator. If someone could help it would be greatly appreciated as I find it hard to find much info on this subject for some reason. Thanks!


回答1:


what do you want to see? Is it your application's data stored in database? If that is the case then you can see the data from android's shell. Follow commands mentioned below.

adb shell

sqlite3 sample-database.db

Check these links for more details.

  1. Opening Sqlite Db on command prompt
  2. http://vinnysoft.blogspot.com/2009/09/creating-databases-from-sqlite-shell.html


来源:https://stackoverflow.com/questions/3496635/how-can-i-view-my-android-apps-database-information

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!