我在我的应用程序的持久存储中存储了一些值。即使我删除了未删除的应用程序持久值(模拟器运行良好,但在手机中我遇到了这个问题)。如何解决我的问题?这是我存储持久值的代码
PersistentObject store =PersistentStore.getPersistentObject(0xc082e14edb333bbeL);synchronized (store) {try{
store.setContents(current_date);
store.commit();}catch (Exception e) {e.printStackTrace();}}