如何解决持久化存储问题?
我在我的应用程序中的持久存储中存储了一些值。即使我删除了该应用程序持久值也没有删除(模拟器它运行良好,但在手机中我遇到了这个问题)。如何解决我的问题? 这是我存储持久值的代码
PersistentObject store =PersistentStore.getPersistentObject(0xc082e14edb333bbeL);synchronized (store) {try{
store.setContents(current_date);
store.commit();}catch (Exception e) {e.printStackTrace();}}
i have store a some value in persistent storage in my application.even i delete that application persistent value not deleted(simulator it working well but in phone i got this problem).how to solve my problem ?
this is my code to store persstent value
PersistentObject store =PersistentStore.getPersistentObject(0xc082e14edb333bbeL);synchronized (store) {try{
store.setContents(current_date);
store.commit();}catch (Exception e) {e.printStackTrace();}}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我按照发布答案的方式解决了我的问题,因为这可能对其他人有用
谢谢
打开此 bb 表单讨论关于这个问题
i resolved my issue following way i post the answer because this may be useful for others
thank you
Open this bb form discussions on this question