Javafx 文本输入框只允许输入0-5数字,允许有一位小数
时间: 2024-05-12 20:18:01 浏览: 90
只允许输入数字的文本框
您可以使用Javafx的TextFormatter类来限制文本输入框只能输入0-5数字和一位小数。示例如下:
```
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.control.TextFormatter;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
TextField textField = new TextField();
// 限制只能输入0-5数字和一位小数
TextFormatter<String> textFormatter = new TextFormatter<>(change -> {
String newText = change.getControlNewText();
if (newText.matches("^([0-5]?(\\.[0-9]?)?)?$")) {
return change;
} else {
return null;
}
});
textField.setTextFormatter(textFormatter);
StackPane root = new StackPane();
root.getChildren().add(textField);
Scene scene = new Scene(root, 200, 100);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
```
当用户输入非法字符时,文本输入框将不会显示该字符。
阅读全文