Android - 如何找到我的根路径
我正在使用phonegap(html和javascript)创建一个新应用程序,并使用SQLite数据库。由于phonegap限制和我对动态数据库的需要,我遵循以下步骤:
1 - 创建外部数据库 2 - 使用 .apk 文件导出它 3 - 在应用程序加载时,我用我的数据库替换phonegap数据库
我在这里遇到的问题是确定“LocalFileSystem.PERSISTENT”还是“TEMPORARY”。看起来是很执着的样子。但是,我不确定如何root我的设备,从而允许我访问和替换相关“LocalFileSystem.PERSISTENT”部分中的数据库。
谢谢
I am creating a new app using phonegap (html and javascript) and am using an SQLite database. Due to phonegap limitations and my need for a dynamic database I am following these steps:
1 - creating an external database
2 - exporting this with the .apk file
3 - on app load I replace the phonegap database with my database
The issue I am having here is working out whether 'LocalFileSystem.PERSISTENT' or TEMPORARY. It looks like it is persistent. However, I am not sure how I can root my device allowing me to access and replace the database within the relevnt 'LocalFileSystem.PERSISTENT' section.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,您的 SQlite 数据库创建于:
要使用已创建的数据库,请参阅此。
By default your SQlite database is created at:
For using already created database see this.