创建一个可供Android中所有应用程序访问的sqlite数据库

发布于 2024-11-05 22:54:18 字数 112 浏览 0 评论 0 原文

我创建了一个 sqlite 数据库,并将由本机代码更新。我应该怎样做才能使其可供其他仅读取数据库的 Java应用程序使用? ContentProvider 足以实现这个目标吗?

I have a sqlite database created , and will be updated, by the native code. What should I do to make it available to other Java applications which will only read the database? Will a ContentProvider be sufficient to achieve this goal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以歌曲疗慰 2024-11-12 22:54:18

根据 http://groups.google.com/group /android-developers/browse_thread/thread/6cff1cf0e10e29?pli=1 你应该使用ContentProvider:

http://developer.android.com/guide/topics/providers/content-providers.html

Content providers store and retrieve data and make it accessible to all applications. They're the only way to share data across applications; there's no common storage area that all Android packages can access

该教程非常详细。

According to http://groups.google.com/group/android-developers/browse_thread/thread/6cff1cf0e10e29?pli=1 you should use a ContentProvider:

http://developer.android.com/guide/topics/providers/content-providers.html

Content providers store and retrieve data and make it accessible to all applications. They're the only way to share data across applications; there's no common storage area that all Android packages can access

That tutorials are quite detailed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文