保留图像数组
在应用程序重新启动时保存和检索图像数组的最佳方法是什么? 我正在实现一个缓存功能,用于离线查看下载的图像,只是想确保我使用正确的持久方法。
谢谢!
What's the best way to save and retrieve an array of images across app restarts?
I'm implementing a caching feature for offline viewing of downloaded images and just want to make sure I'm using the right persisting methods.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最快&可能最好的解决方案是将图像保存到磁盘,毫无疑问。
您可以执行类似的操作将它们另存为 JPEG。
The quickest & probably best solution would be to persist your images to disk, no question about it.
You could do something like this to save them as JPEG.