在我的程序中,用户用户在外部窗口上输入密码,然后该密码通过一个函数传递。问题在于该功能在用户可以输入密码之前执行。这是我的密码窗口。已经将Passw声明为该类的静态字符串
public static String enterPassword()
{
Stage primaryStage = new Stage();
VBox vb = new VBox();
vb.setPadding(new Insets(10, 0, 0, 10));
vb.setSpacing(10);
HBox hb = new HBox();
hb.setSpacing(10);
hb.setAlignment(Pos.CENTER_LEFT);
Label label = new Label("Password");
final PasswordField pb = new PasswordField();
final TextField textField = new TextField();
textField.setManaged(false);
textField.setVisible(false);
CheckBox checkBox = new CheckBox("Show/Hide password");
textField.managedProperty().bind(checkBox.selectedProperty());
textField.visibleProperty().bind(checkBox.selectedProperty());
pb.managedProperty().bind(checkBox.selectedProperty().not());
pb.visibleProperty().bind(checkBox.selectedProperty().not());
// Bind the textField and passwordField text values
bidirectionally.
textField.textProperty().bindBidirectional(pb.textProperty());
pb.setOnAction(e ->
{
passw = pb.getText();
pb.clear();
primaryStage.hide();
});
textField.setOnAction(e ->
{
passw = textField.getText();
textField.clear();
primaryStage.hide();
});
hb.getChildren().addAll(label, pb, textField, checkBox);
vb.getChildren().addAll(hb);
Scene scene = new Scene(vb, 450, 90);
primaryStage.setScene(scene);
primaryStage.show();
return passw;
}
这是main中执行hostRun函数的代码
password = enterPassword();
while(password == null)
{
}
hostRun(4000000, '0', index, password, 0);
在这里,我尝试执行while循环以延迟hostRun的执行,但是即使那样也会导致密码窗口崩溃。如何延迟hostRun的执行,直到用户输入密码?
答案 0 :(得分:1)
如果您想在程序关闭之前暂停程序,可以执行以下操作:
primaryStage.showAndWait();
这将暂停调用该阶段的方法,直到其关闭。无需循环。然后enterPassword()将等待直到阶段关闭。