互联网关闭时,数据将被删除

时间:2018-03-07 12:44:20

标签: java android realm

我正在使用领域nb_epoch = len(history1.history['loss']) learning_rate=history1.history['lr'] xc=range(nb_epoch) plt.figure(3,figsize=(7,5)) plt.plot(xc,learning_rate) plt.xlabel('num of Epochs') plt.ylabel('learning rate') plt.title('Learning rate') plt.grid(True) plt.style.use(['seaborn-ticks']) ,如果互联网正常运行,数据将被保存并成功检索。但如果我关掉我的设备的互联网,它不会返回数据。 任何人都可以建议吗?

我已经按照此链接了解了领域。 https://www.androidhive.info/2016/05/android-working-with-realm-database-replacing-sqlite-core-data/

这是我的应用程序类代码

compile 'io.realm:realm-android:0.82.1'

下面是realmcontroller,它配备了一些用于插入或检索数据的代码

@Override
public void onCreate() {
    super.onCreate();

    RealmConfiguration realmConfiguration = new RealmConfiguration.Builder(this)
            .name(Realm.DEFAULT_REALM_NAME)
            .schemaVersion(0)
            .deleteRealmIfMigrationNeeded()
            .build();
    Realm.setDefaultConfiguration(realmConfiguration);

1 个答案:

答案 0 :(得分:0)

不确定这是否可以解决您的问题,但在设置配置之前尝试添加Realm.init(this);