在Android中以编程方式查找数据库的路径
我想在 SD 卡上复制我的应用程序的数据库。
该数据库位于 /data/data/PACKAGE_NAME/databases/ 中,我想以编程方式找到此路径(以便我可以在备份活动中使用它)。
如何检索该信息?
I'd like to make a copy of the database of my application on the sdcard.
The database is located in /data/data/PACKAGE_NAME/databases/ and I'd like to find this path programmatically (so I can use it in my backup activity).
How to retrieve that information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
Activity
中使用getDatabasePath(DATABASE_NAME).getAbsolutePath()
Use
getDatabasePath(DATABASE_NAME).getAbsolutePath()
in yourActivity
据我所知,没有任何方法可以返回数据库应用程序的文件夹路径,作为获取数据文件夹的方法。
从您的 Activity 使用此方法查找包的名称:
getPackageName()
然后您可以创建一个返回文件夹 DB 的路径的方法。
To my knowledge there is no method that will return the folder path of your DB app, as the method for obtaining the data folder.
From your Activity uses this method to find the name of your package:
getPackageName()
and then you can create a method that returns the path of the folder DB.