修改
显然这是一个错误。我发现的报告here可以找到。正如@James_D所指出的,这不是绑定的问题,但是在将文本设置为非空值后将其设置为null就足够了。
我遇到了JavaFX TextFormatter
的麻烦。我想将文本字段中的文本长度限制为10个字符,但我发现如果text属性绑定到非null值,然后是未绑定并且反弹为空值,则文本格式化程序会抛出异常:
java.lang.IllegalArgumentException:开头必须是< =结束
在调用TextFormatter.Change#getControlNewText
时,这很奇怪,因为如果有的话,我会期望一个空的引用异常。
我附上一个简单的代码,用于展示此问题的完整示例。如果有什么我做错了请告诉我
package sample;
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class Main extends Application {
private Model m;
private int num = 0;
@Override
public void start(Stage primaryStage) throws Exception {
TextField tf = new TextField();
tf.setTextFormatter(new TextFormatter<>(change -> change.getControlNewText().length() > 10 ? null : change));
Button b = new Button("Click!");
b.setOnAction(ev -> {
if (m != null) {
tf.textProperty().unbindBidirectional(m.nameProperty());
}
m = new Model();
if (num % 2 == 0) {
System.out.println("Setting foo");
m.setName("foo");
}
num++;
tf.textProperty().bindBidirectional(m.nameProperty());
}
);
VBox vb = new VBox(tf, b);
primaryStage.setScene(new Scene(vb));
primaryStage.show();
}
public class Model {
private SimpleStringProperty name = new SimpleStringProperty(this, "name");
public StringProperty nameProperty() {
return name;
}
public String getName() {
return name.get();
}
public void setName(String name) {
this.name.set(name);
}
}
public static void main(String[] args) {
launch(args);
}
}
在此代码中,TextField
有一个TextFormatter
拒绝所有更改,这导致长度> 10的字符串。单击该按钮时,会创建一个新的Model
对象,并且它的name
属性绑定到TextField
的文本属性 - 而不是旧版Model
{1}}未绑定。该模型在用&#34; foo&#34;初始化之间交替进行。作为名称,或不使用名称初始化 - 即 - 名称保持为空。
首次单击按钮时,您应该看到文本被更改为&#34; foo&#34;,然后在下次单击按钮时抛出异常。
答案 0 :(得分:1)
这看起来像一个错误(看起来文本格式化程序的过滤器没有正确处理设置为Condition
的文本)。一种可能的解决方法是绑定文本格式化程序的value属性,而不是文本字段的text属性:
STANDARD