样品溶液
也许您想要做的是显示一个提示对话框并使用showAndWait等待提示对话框的响应,然后再继续。类似于JavaFX2:我可以暂停后台任务/服务吗?
您的情况可能比后台任务服务简单一些,并且(除非您涉及长时间运行的任务),您可以在 JavaFX 应用程序线程上执行所有操作。我创建了一个简单的示例解决方案,它只在 JavaFX 应用程序线程上运行所有内容
这是示例程序的输出:
每次遇到一些缺失数据时,都会显示一个提示对话框,等待用户输入以填写缺失的数据(用户提供的响应在上面的屏幕截图中以绿色突出显示)。
import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.event.*;
import javafx.geometry.Pos;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.*;
public class MissingDataDemo extends Application {
private static final String[] SAMPLE_TEXT =
"Lorem ipsum MISSING dolor sit amet MISSING consectetur adipisicing elit sed do eiusmod tempor incididunt MISSING ut labore et dolore magna aliqua"
.split(" ");
@Override public void start(Stage primaryStage) {
VBox textContainer = new VBox(10);
textContainer.setStyle("-fx-background-color: cornsilk; -fx-padding: 10;");
primaryStage.setScene(new Scene(textContainer, 300, 600));
primaryStage.show();
TextLoader textLoader = new TextLoader(SAMPLE_TEXT, textContainer);
textLoader.loadText();
}
public static void main(String[] args) { launch(args); }
}
class TextLoader {
private final String[] lines;
private final Pane container;
TextLoader(final String[] lines, final Pane container) {
this.lines = lines;
this.container = container;
}
public void loadText() {
for (String nextText: lines) {
final Label nextLabel = new Label();
if ("MISSING".equals(nextText)) {
nextLabel.setStyle("-fx-background-color: palegreen;");
MissingTextPrompt prompt = new MissingTextPrompt(
container.getScene().getWindow()
);
nextText = prompt.getResult();
}
nextLabel.setText(nextText);
container.getChildren().add(nextLabel);
}
}
class MissingTextPrompt {
private final String result;
MissingTextPrompt(Window owner) {
final Stage dialog = new Stage();
dialog.setTitle("Enter Missing Text");
dialog.initOwner(owner);
dialog.initStyle(StageStyle.UTILITY);
dialog.initModality(Modality.WINDOW_MODAL);
dialog.setX(owner.getX() + owner.getWidth());
dialog.setY(owner.getY());
final TextField textField = new TextField();
final Button submitButton = new Button("Submit");
submitButton.setDefaultButton(true);
submitButton.setOnAction(new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent t) {
dialog.close();
}
});
textField.setMinHeight(TextField.USE_PREF_SIZE);
final VBox layout = new VBox(10);
layout.setAlignment(Pos.CENTER_RIGHT);
layout.setStyle("-fx-background-color: azure; -fx-padding: 10;");
layout.getChildren().setAll(
textField,
submitButton
);
dialog.setScene(new Scene(layout));
dialog.showAndWait();
result = textField.getText();
}
private String getResult() {
return result;
}
}
}
现有提示对话框库
ControlsFX 库中有一个预先编写的提示对话框,它将为您处理提示对话框显示。
澄清事件处理程序处理和忙等待
你想要:
一个等待用户在我的 TextField 中输入文本并点击“enter”的函数。
根据定义,这就是EventHandler。EventHandler 是“当发生此处理程序所注册类型的特定事件时调用的”。
当事件发生时,您的事件处理程序将触发,您可以在事件处理程序中做任何您想做的事情 - 您不需要,也不应该有一个繁忙的事件等待循环。
创建 TextField 操作事件处理程序
与其在问题中将事件处理程序放在窗口上,不如使用textField.setOnAction在文本字段上使用特定的操作事件处理程序:
textField.setOnAction(
new EventHandler<ActionEvent>() {
@Override public void handle(ActionEvent e) {
// enter has been pressed in the text field.
// take whatever action has been required here.
}
);
如果您将文本字段放置在对话框中并为对话框设置了默认按钮,则无需为文本字段设置事件处理程序,因为对话框的默认按钮将拾取并适当地处理 enter 键事件。