在我的应用中,我为每个问题捕获了视频。之后我上传到服务器。
我在我的应用中使用了数据库。
我的问题是where can i keep the videos
?
用户可以退出并再次登录。那时我们会保留拍摄的视频。
我可以将视频作为blob存储在数据库中,还是可以在SD卡上使用商店视频。?
if i store the videos on sd card, some time user can remove sd card or delete the videos.
if i plan to store the videos on sqlite, i'm afraid for memory. is it enough for memory?
答案 0 :(得分:0)
Android上SQLite数据库中的单个项目或列数限制为1MB。你的大多数视频都会比那些大得多。
将数据保存为文件,然后将文件名保存在数据库中。
答案 1 :(得分:0)
不要在数据库中存储500KB的blob。在数据库中存储路径如果使用MODE_PRIVATE,则其他进程将无法访问它们。
有关MODE_PRIVATE的更多信息,请阅读以下内容: http://developer.android.com/reference/android/content/Context.html#openFileOutput%28java.lang.String,%20int%29