Android,无需数据库即可存储复杂对象?
我经常使用 ArrayList 和 Hashmap 在我的应用程序中传递信息,但是对于复杂对象的持久存储,我可以使用某种“Parcelable”或其他东西来存储通用对象类型 - 我可以恢复和填充 - 而无需创建数据库并执行数据库管理功能?
只是好奇,仅此而已,
谢谢!
I pass information around in my app with ArrayList and Hashmap a lot, but for persistent storage of complex objects, can I use some kind of "Parcelable" or something to store generic object types - that I can restore and stuff - without creating a database and doing the db management functions?
just curious thats all
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从文档中:
就像 Tim 所说,使您的对象 可序列化,这样就可以扁平化了。
From the documentation :
Like Tim said, make your object Serializable, so that it can be flattened.