在 Android 应用程序中使用图像和视频(Sqlite blob?)
我正在开发一个使用 sqlite 数据库的应用程序,我在数据库中存储图像时遇到了麻烦,我读了很多示例,但不在这里工作,有人可以告诉我在 SQLite 中存储图像的最佳方法吗? (然后我还需要存储电影......)
将来我将不得不开发一个后台办公室,以便公司可以在数据库中添加/更改/删除项目。
你能帮我吗?
谢谢!
I'm developing and an application that uses a sqlite database, and I'm having trouble to store images in database, I read a lot of examples, but not working here, can someone tell me the best way to store images in SQLite?
(and then I'll need to store movies as well..)
In the future I'll have to develop a backoffice so the company can add/change/delete items in the db.
Can you please help me?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这并不能完全回答你的问题:
我不会费心将这些巨大的 blob 存储在 sqlite 中,而是将它们存储在文件系统上,并且只将文件名/路径存储在 sqlite 中。
这将使您免于将内容放入数据库的麻烦,并且通过 java.io.File 和 FileInputStream 操作文件(创建、删除、列表)相对容易等。
参见例如 PicHelper 作为一个处理在文件中存储/加载数据的类。
I know that this does not exactly answer your question:
I'd not bother storing those huge blobs in sqlite, but rather store them on file system and only store the file names/paths in sqlite.
This will save you from the hassle of putting the stuff in the DB and manipulation of files (create, delete, list) is relatively easy through
java.io.File
andFileInputStream
etc.See e.g. PicHelper as a class that deals with storing / loading data in/from files.