这就是我回答完最后一个问题所需的全部内容。
如果你看我的最后一个问题,你会看到我的类,包含四个字段,对应我的表的四列
public static class ContactOptions {
private final StringProperty one;
private final StringProperty two;
private final StringProperty three;
private final StringProperty four;
ContactOptions(String col1, String col2, String col3, String col4) {
this.one = new StringProperty(col1);
this.two = new StringProperty(col2);
this.three = new StringProperty(col3);
this.four = new StringProperty(col4);
}
public String getOne() {
return one.get();
}
public String getTwo() {
return two.get();
}
public String getThree() {
return three.get();
}
public String getFour() {
return four.get();
}
}
运行后如何让 GUI 更新ContactOptions.one.set
?
当我向下滚动并备份时,它会更新。我怎样才能让它在不滚动的情况下更新。
我还在https://forums.oracle.com/forums/thread.jspa?threadID=2275725上问过这个问题