如何将 Hastable 或对象写入 Blackberry 上的文件
我刚刚了解到黑莓不支持实现可序列化。那么有没有办法将对象(或Hashtable)写入文件呢?
谢谢。
I just learned that Blackberry does not support implementing Serializable. So is there any way to write an object (or Hashtable) to a file?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想存储数据,可以使用 PersistentStore 来存储项目,这是您会发现的最接近 Serialized 的东西。请注意,此方法需要对应用程序进行签名。
否则,您可以将数据写入设备上的文件 。
链接的文档还展示了如何将其存储在 SQLite 中或使用其他两个可用的数据存储。
If you just want to store the data, you can use the PersistentStore to store the item and is the closest thing to Serializable you'll find. Note that this method requires the application to be signed.
Otherwise, you can write the data to a file on the device.
The linked document also shows how to store it in SQLite or use the two other data stores available.
哪个文件?如果您要为应用程序存储某种设置对象,请查看 PersistentStore API。
Which file? If you're storing some sort of settings object for your app, take a look at the PersistentStore API.