gpt4 book ai didi

android - 如何修复错误 Could not find class 'io.realm.rx.RealmObservableFactory$2'?

转载 作者:行者123 更新时间:2023-11-30 01:39:28 26 4
gpt4 key购买 nike

我正在使用 Eclipse 开发一个带有 realm 的 android 应用程序。但我面临一个问题。当我创建 Realm 的对象时,在 realm.createObject(Product.class) 处发生以下异常。

你能帮我理解为什么会出现这个异常吗?我这边是不是少了什么东西?

Error: Could not find class 'io.realm.rx.RealmObservableFactory$2', referenced from method io.realm.rx.RealmObservableFactory.from

Product product=new Product();
Realm realm = Realm.getInstance(this);
realm.beginTransaction();
realm.createObject(Product.class);
product.setId("1001");
product.setName("John");
realm.commitTransaction();
realm.close();

产品类对象文件。

 import io.realm.RealmObject;
import io.realm.annotations.PrimaryKey;
import io.realm.annotations.RealmClass;
import io.realm.*;

@RealmClass
public class Product extends RealmObject {
@PrimaryKey
String id;
String name;
public Product(){
super();
}
public Product(String id, String name){
super();
this.id = id;
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

谢谢,

最佳答案

我猜测 Eclipse 不知何故无法妥善处理缺失的 Rx.Observable 类,该类是可选的。您是否尝试过此处描述的任何一种解决方案? https://realm.io/docs/java/latest/#jackson-databind

关于android - 如何修复错误 Could not find class 'io.realm.rx.RealmObservableFactory$2'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34689487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com