gpt4 book ai didi

java - TextFormatter 在绑定(bind)(双向)到空字符串时抛出异常

转载 作者:行者123 更新时间:2023-12-01 10:34:27 25 4
gpt4 key购买 nike

编辑
显然这是一个错误。我所做的报告可以找到here 。正如 @James_D 指出的,这不是绑定(bind)的问题,但在将文本设置为非空值后将其设置为 null 就足够了。

<小时/>

我在使用 JavaFX TextFormatter 时遇到问题。我想将文本字段中的文本长度限制为 10 个字符,但我发现如果文本属性绑定(bind)到非空值,然后取消绑定(bind)并反弹到空值,则文本格式化程序会引发异常:

java.lang.IllegalArgumentException: The start must be <= the end

在调用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);
}

}

在此代码中,有一个带有 TextFormatterTextField,它拒绝所有更改,从而导致长度>10 的字符串。单击按钮时,将创建一个新的 Model 对象,并且它的 name 属性绑定(bind)到 TextField 的 text 属性 - 而不是在旧的模型未绑定(bind)。该模型交替使用“foo”作为名称进行初始化,或者不使用名称进行初始化(即名称保持为空)。

第一次单击按钮时,您应该看到文本更改为“foo”,下次单击按钮时会引发异常。

最佳答案

这看起来像是一个错误(文本格式化程序的过滤器似乎无法正确处理设置为 null 的文本)。一种可能的解决方法是绑定(bind)文本格式化程序的 value 属性,而不是文本字段的 text 属性:

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();
TextFormatter<String> textFormatter = new TextFormatter<>(
TextFormatter.IDENTITY_STRING_CONVERTER, "", change ->
change.getControlNewText().length() > 10 ? null : change);

tf.setTextFormatter(textFormatter);

Button b = new Button("Click!");
b.setOnAction(ev -> {
if (m != null) {
// tf.textProperty().unbindBidirectional(m.nameProperty());
textFormatter.valueProperty().unbindBidirectional(m.nameProperty());
}

m = new Model();
if (num % 2 == 0) {
System.out.println("Setting foo");
m.setName("foo");
}
num++;

// tf.textProperty().bindBidirectional(m.nameProperty());
textFormatter.valueProperty().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);
}

}

关于java - TextFormatter 在绑定(bind)(双向)到空字符串时抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34865132/

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