gpt4 book ai didi

java - Stage.show() 更改 ComboBox 的值

转载 作者:行者123 更新时间:2023-12-01 09:33:54 26 4
gpt4 key购买 nike

考虑以下 MCVE。当然,这个MCVE的功能是完全没有意义的,但我需要它在实际实现中以这种方式工作。

import javafx.application.Application;
import javafx.application.Platform;
import javafx.concurrent.Task;
import javafx.scene.Scene;
import javafx.scene.control.ComboBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

@SuppressWarnings("all")
public class MCVE extends Application {

private static final String OPTION_1 = "Option 1 (www.option1.com)";
private static final String OPTION_2 = "Option 2 (www.option2.com)";
private static final String OPTION_3 = "Option 3 (www.option3.com)";
private static final String OPTION_4 = "Option 4 (www.option4.com)";
private static final String OPTION_5 = "Option 5 (www.option5.com)";

ComboBox<String> cb;

@Override
public void start(Stage primaryStage) throws Exception {
VBox outer = new VBox();

cb = new ComboBox<String>();
outer.getChildren().add(cb);

Scene scene = new Scene(outer, 640, 480);
primaryStage.setScene(scene);

Task<Void> task = new Task<Void>() {
@Override
public Void call() {
cb.getItems().addAll(OPTION_1, OPTION_2, OPTION_3, OPTION_4, OPTION_5);
cb.setEditable(true);

// Adds a listener to the selectedItemProperty that gets the
// value inside the parenthesis of the selected item and sets
// this as the text of the ComboBox.
cb.getSelectionModel().selectedItemProperty().addListener((obs, oldValue, newValue) -> {
String[] valSplit = newValue.split("[\\(\\)]");
if (valSplit.length > 1) {
Platform.runLater(() -> cb.getEditor().setText(valSplit[1]));
}
});

cb.getEditor().textProperty().addListener((obs, oldValue, newValue) -> {
System.out.println("CB value: " + newValue);
});

setURL("www.option2.com");

return null;
}
};

task.setOnSucceeded(e -> {
primaryStage.show();
});

new Thread(task).start();
}

public void setURL(String url) {
// First we check if the classValue is the URL of one of the options in
// the ComboBox. If it is we select that option.
for (String option : cb.getItems()) {
// We retrieve the URL of the option.
String opURL = option.split("[\\(\\)]")[1];
// If the URL of the option is equals to the provided URL, we select
// this option and break the for loop.
if (opURL.equals(url)) {
cb.getSelectionModel().select(option);
break;
}
}
}

public static void main(String[] args) {
launch(args);
}
}

由于我调用 setURL("www.option2.com"),我希望它首先使用该 URL 在 ComboBox 中选择选项,然后获取括号内的值并将其设置为 ComboBox 的文本。因此,我将 ComboBox 的最终值排除为“www.option2.com”。但这并没有发生。相反,最终值是“选项 2 (www.option2.com)”。

由于我已向 ComboBoxtextProperty 添加了一个监听器,因此我可以看到该值首先是预期的“www.option2.com”,但随后更改回“选项 2 (www.option2.com)”。经过进一步调查,我发现是对primaryStage.show()的调用改变了该值。更具体地说,是调用已弃用的 Parent.impl_processCSS 来更改该值。

因此,如果我在 primaryStage.show() 之后设置 URL,一切都会像我一样工作,除了。但是,如果我想在显示对话框之前完成所有工作(就像我现在所做的那样),则事实并非如此。

那么为什么 primaryStage.show() 会更改我的 ComboBox 的值,如何防止这种情况发生?当尝试设置 ComboBox 的值时,我是否应该使用另一种方法?

最佳答案

您可以交换设置 editor 文本的代码部分ComboBox 的一部分,其中包含一些设置 cell factory 的代码和一个converter .

cb.setConverter(new StringConverter<String>(){
@Override
public String toString(String object) {
if(object != null) {
String[] valSplit = object.split("[\\(\\)]");
return valSplit[1];
} else
return null;

}

@Override
public String fromString(String string) {

List<String> collect = cb.getItems().stream().filter(s -> s.contains(string)).collect(Collectors.toList());
if(collect.size() == 1)
return collect.get(0);
else
return null;
}
});

cb.setCellFactory(item -> {
return new ListCell<String>(){
@Override
protected void updateItem(String item, boolean empty) {
super.updateItem(item, empty);

if(item == null || empty)
setText("");
else
setText(item);
}
};
});

转换器的 toString 方法将以所需的形式格式化所选项目,并且单元工厂确保下拉列表中的项目以原始格式显示。

注意:我还填充了转换器的fromString方法。当用户在编辑器中键入内容然后按 enter 时,将执行此方法。此实现会检查列表中的所有项目,如果只有一个项目包含键入的字符串,则将选择该项目。

关于java - Stage.show() 更改 ComboBox 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39163897/

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