我正在寻找一个使用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;
}
}));