作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我是一名优秀的程序员,十分优秀!