如何验证 JavaFX 密码字段中输入的密码?
文本字段接受并显示文本。在最新版本的 JavaFX 中,它仅接受单行输入。
与文本字段类似,密码字段接受文本,但它不会显示给定的文本,而是通过显示回显字符串来隐藏输入的字符。
在 JavaFX 中,javafx.scene.control.PasswordField 表示密码字段,它继承了 Text 类。要创建密码字段,你需要实例化此类。
此类从其父类TextInputControl继承了一个名为text的属性。此属性保存了当前密码字段的内容。你可以使用getText()方法检索此数据。
示例
import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.PasswordField; import javafx.scene.control.TextField; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.scene.text.Font; import javafx.scene.text.FontPosture; import javafx.scene.text.FontWeight; import javafx.scene.text.Text; import javafx.stage.Stage; public class PasswordFieldVerification extends Application { public void start(Stage stage) { //Creating nodes TextField textField = new TextField(); PasswordField pwdField = new PasswordField(); Button button = new Button("Submit"); button.setTranslateX(250); button.setTranslateY(75); //Creating labels Label label1 = new Label("Name: "); Label label2 = new Label("Password: "); //Setting the message with read data Text text = new Text(""); Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 10); text.setFont(font); text.setTranslateX(15); text.setTranslateY(125); text.setFill(Color.BROWN); //Displaying the message button.setOnAction(e -> { //Retrieving data String name = textField.getText(); String pwd = pwdField.getText(); if(pwd.equals("abc123")) { text.setText("Hello "+name+" welcome to Tutorialspoint"); } else { text.setText("Wrong password try again"); } }); //Adding labels for nodes HBox box = new HBox(5); box.setPadding(new Insets(25, 5 , 5, 50)); box.getChildren().addAll(label1, textField, label2, pwdField); Group root = new Group(box, button, text); //Setting the stage Scene scene = new Scene(root, 595, 150, Color.BEIGE); stage.setTitle("Password Field Example"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
输出
输入的密码 - mypassword
输入的密码 - abc123
广告