黑莓应用程序中会话终止后持久存储数据丢失
我正在使用持久性存储在 Blackberry 应用程序中存储数据。 当我创建对象并将其存储在同一会话中的持久存储中时,数据会正确保存。 但数据不会在下一个会话中从存储中恢复。
我该如何解决这个问题?
我的代码如下:
static TrialStore ts = new TrialStore();
static Vector data= new Vector();
synchronized (store) {
store.setContents(data);
ts = new TrialStore();
ts .setElement(TrialStore.USERNAME, username);
ts .setElement(TrialStore.PASSWORD, password);
data.addElement(ts);
store.commit();
}
I am using persistent stores to store data in a Blackberry application.
While I create objects and store it in persistent store in same session data is saved properly.
But the data is not recovered from store in next session.
How do I fix this?
My code is as follows:
static TrialStore ts = new TrialStore();
static Vector data= new Vector();
synchronized (store) {
store.setContents(data);
ts = new TrialStore();
ts .setElement(TrialStore.USERNAME, username);
ts .setElement(TrialStore.PASSWORD, password);
data.addElement(ts);
store.commit();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
PersistentStore
类来获取和存储持久对象,例如:更新数据后,您可以使用以下方式存储它:
You need to use the
PersistentStore
class to get and store the persistable object, for example:Once you have updated the data, you can store it using: