我正在寻找一个使用Java8 u40的新类TextFormatter
将用户输入限制为仅数字和小数点的示例。
http://download.java.net/jdk9/jfxdocs/javafx/scene/control/TextFormatter.Change.html
最佳答案
请参见以下示例:
DecimalFormat format = new DecimalFormat( "#.0" );
TextField field = new TextField();
field.setTextFormatter( new TextFormatter<>(c ->
{
if ( c.getControlNewText().isEmpty() )
{
return c;
}
ParsePosition parsePosition = new ParsePosition( 0 );
Object object = format.parse( c.getControlNewText(), parsePosition );
if ( object == null || parsePosition.getIndex() < c.getControlNewText().length() )
{
return null;
}
else
{
return c;
}
}));
在这里,我使用了TextFormatter(UnaryOperator filter)构造函数,该构造函数仅将过滤器用作参数。
要了解if语句,请参考DecimalFormat parse(String text, ParsePosition pos)。
关于javafx - Java 8 U40 TextFormatter(JavaFX)仅将用户输入限制为十进制数字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61965708/