自应用发布以来,我一直在使用Android Studio开发应用。
直到最近,一切都很好,我必须调试和检查数据库文件。由于我不知道如何直接看到数据库,当我调试生成数据库文件时,我不得不将数据库文件从我的手机导出到PC上。
为此,我必须打开DDMS >文件资源管理器。一旦我打开DDMS,我必须重新连接USB,我失去了调试线程。在检查数据库文件之后,我必须关闭DDMS并重新连接USB以回到调试模式。
这太复杂了。有人有更好的方法来做到这一点在Android Studio(我知道它更容易在Eclipse) ?
从Android Studio查看数据库:
选项1:
Download and install SQLiteBrowser.
Copy the database from the device to your PC:
Android Studio versions < 3.0:
Open DDMS via Tools > Android > Android Device Monitor
Click on your device on the left.
You should see your application:
Go to File Explorer (one of the tabs on the right), go to /data/data/databases
Select the database by just clicking on it.
Go to the top right corner of the Android Device Monitor window. Click on the 'pull a file from the device' button:
A window will open asking you where you want to save your database file. Save it anywhere you want on your PC.
Android Studio versions >= 3.0:
Open Device File Explorer via View > Tool Windows > Device File Explorer
Go to data > data > PACKAGE_NAME > database, where PACKAGE_NAME is the name of your package (it is com.Movie in the example above)
Right click on the database and select Save As.... Save it anywhere you want on your PC.
Now, open the SQLiteBrowser you installed. Click on 'open database', navigate to the location you saved the database file, and open. You can now view the contents of your database.
选项2:
转到这个Github存储库,并按照自述文件中的说明在您的设备上查看您的数据库。你得到的结果是这样的:
就是这样。当然,在发布应用之前,你应该撤销所有这些步骤。
Follow the above steps to open the database folder of your app in Android Device explorer and in there you can see six files, The first three is named as android and the last three is named as your database name. You only have to work with the last three files, save these three files at your preferred location. You can save these files by right-clicking to the file and click save as button (like I have my database named as room_database and so three files are named as room_database, room_database-shm, and room_database-wal. Rename the corresponding file as follows:-
1)从room_database到room_database.db
2) room_database-shm到room_database.db-shm
3) room_database-wal到room_database.db-wal
现在在任何SQLite浏览器中打开第一个文件,这三个文件都将被填充到浏览器中。
简单和容易的方法来查看Android工作室中的数据库内容。
# Android Studio 4.1 Canary 6及更高版本
你可以使用非常简单的Android Studio的数据库检查器功能。
在这里,您可以使用新的数据库检查器检查,查询和修改应用程序的数据库。例如,你可以通过修改数据库中的值来调试正在运行的应用程序,并在不离开Android Studio的情况下在设备上实时测试这些更改。
首先,将应用程序部署到运行API级别26或更高的设备上,并从菜单栏中选择“查看>工具Windows >数据库检查器”。
# Android Studio 4.0及以下版本
首先,在Android Studio中安装数据库导航插件
第二,重启Android Studio
第三,将数据库保存到默认位置,如:(C:\Users\User .
名称\文档\AndroidStudio\DeviceExplorer\模拟器或设备\数据\数据\包名\数据库)
第四,连接数据库导航器中保存的dbname_db文件
给出第三步中使用的相同的DB文件路径
i.e . (C)
最后,只需测试DB连接和打开控制台,做任何你想做的事情。
如果你想要刷新数据库,请重复步骤2并保存或刷新。
编码快乐! !
要知道sqlite数据库存储由你在android studio,你需要遵循简单的步骤:
1.Run your application
2.Go to Tools--->Android---->Device Monitor
3.Find your application name in left panel
4.Then click on File Explorer tab
5.Select data folder
6.Select data folder again and find your app or module name
7.Click on your database name
8.On right-top window you have an option to pull file from device.
9.Click it and save it on your PC
10.Use FireFox Sqlite manager to attach it to your project.
欲了解更多信息,此链接将是有用的。
http://www.c-sharpcorner.com/UploadFile/e14021/know-where-database-is-stored-in-android-studio/
要查看您的db文件中的数据,您需要下载sqlite浏览器或在任何浏览器中添加相同的插件,因此您需要在浏览器中打开文件并查看您的数据。
从http://sqlitebrowser.org/下载浏览器
这里是屏幕截图显示浏览器包含注册数据库
谢谢,