Java8u40の新しいクラス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) を参照してください。