JavaFX TextField

文本字段基本上用于从用户那里获取文本形式的输入。 javafx.scene.control.TextField表示TextField。它提供了各种方法来处理JavaFX中的文本字段。可以通过实例化TextField类来创建TextField。
让我们看一个示例, 其中向用户显示两个文本框, 并提示你填写其用户名和密码。

package application; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextField; import javafx.scene.layout.GridPane; import javafx.stage.Stage; public class TextFieldTest extends Application { public static void main(String[] args) {launch(args); }@Overridepublic void start(Stage primaryStage) throws Exception { // TODO Auto-generated method stub Label user_id=new Label("User ID"); Label password = new Label("Password"); TextField tf1=new TextField(); TextField tf2=new TextField(); Button b = new Button("Submit"); GridPane root = new GridPane(); root.addRow(0, user_id, tf1); root.addRow(1, password, tf2); root.addRow(2, b); Scene scene=new Scene(root, 800, 200); primaryStage.setScene(scene); primaryStage.setTitle("Text Field Example"); primaryStage.show(); }}

输出:
JavaFX TextField

文章图片
获取文本字段数据 【JavaFX TextField】TextField类提供了一个实例方法getText()来检索文本字段数据。它返回String对象, 该对象可用于将用户详细信息保存在数据库中。
package application; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.control.TextField; import javafx.scene.layout.GridPane; import javafx.stage.Stage; public class TextFieldExample extends Application { public static void main(String[] args) {launch(args); }@Overridepublic void start(Stage primaryStage) throws Exception { // TODO Auto-generated method stub Label user_id=new Label("User ID"); Label password = new Label("Password"); TextField tf1=new TextField(); TextField tf2=new TextField(); Button b = new Button("Submit"); b.setOnAction(e-> System.out.println("You entered: User_ID: "+tf1.getText()+""+"Password: "+tf2.getText())); GridPane root = new GridPane(); root.addRow(0, user_id, tf1); root.addRow(1, password, tf2); root.addRow(2, b); Scene scene=new Scene(root, 300, 200); primaryStage.setScene(scene); primaryStage.setTitle("Text Field Example"); primaryStage.show(); }}

输出:
JavaFX TextField

文章图片

    推荐阅读