如何解决持久化存储问题?

发布于 2024-12-03 15:06:54 字数 324 浏览 2 评论 0原文

我在我的应用程序中的持久存储中存储了一些值。即使我删除了该应用程序持久值也没有删除(模拟器它运行良好,但在手机中我遇到了这个问题)。如何解决我的问题? 这是我存储持久值的代码

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌酱 2024-12-10 15:06:54

我按照发布答案的方式解决了我的问题,因为这可能对其他人有用
谢谢

打开此 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文