建议在JavaFX文本字段中限制输入的方法

时间:2013-03-25 13:14:42

标签: input javafx textfield

似乎问题是this的重复。但我的问题是我已经通过两种方式在JavaFX中开发了一个整数文本字段。代码如下:

public class FXNDigitsField extends TextField
{
private long m_digit;
public FXNDigitsField()
{
    super();
}
public FXNDigitsField(long number)
{
    super();
    this.m_digit = number;
    onInitialization();
}

private void onInitialization()
{
    setText(Long.toString(this.m_digit));
}

@Override
public void replaceText(int startIndex, int endIndex, String text)
{
    if (text.matches(Constants.DIGITS_PATTERN) || text.equals(Constants.EMPTY_STRING)) {
        super.replaceText(startIndex, endIndex, text);
    }
}

@Override
public void replaceSelection(String text)
{
    if (text.matches(Constants.DIGITS_PATTERN) || text.equals(Constants.EMPTY_STRING)) {
        super.replaceSelection(text);
    }
}
}

第二种方法是添加事件过滤器。

提供了代码段。

 // restrict key input to numerals.
this.addEventFilter(KeyEvent.KEY_TYPED, new EventHandler<KeyEvent>() {
  @Override public void handle(KeyEvent keyEvent) {
    if (!"0123456789".contains(keyEvent.getCharacter())) {
      keyEvent.consume();
    }
  }
});

我的问题是,这是诽谤的方式?任何人都可以帮我挑选合适的人吗?

5 个答案:

答案 0 :(得分:10)

在TextField中添加验证的最佳方法是第三种方式。 此方法允许TextField完成所有处理(复制/粘贴/撤消安全)。 它不需要您扩展TextField类。 它允许您决定在每次更改后如何处理新文本 (将其推送到逻辑,或转回以前的值,甚至修改它)。

// fired by every text property changes
textField.textProperty().addListener(
  (observable, oldValue, newValue) -> {
    // Your validation rules, anything you like
    // (! note 1 !) make sure that empty string (newValue.equals("")) 
    //   or initial text is always valid
    //   to prevent inifinity cycle
    // do whatever you want with newValue

    // If newValue is not valid for your rules
    ((StringProperty)observable).setValue(oldValue);
    // (! note 2 !) do not bind textProperty (textProperty().bind(someProperty))
    //   to anything in your code.  TextProperty implementation
    //   of StringProperty in TextFieldControl
    //   will throw RuntimeException in this case on setValue(string) call.
    //   Or catch and handle this exception.

    // If you want to change something in text
    // When it is valid for you with some changes that can be automated.
    // For example change it to upper case
    ((StringProperty)observable).setValue(newValue.toUpperCase());
  }
);

答案 1 :(得分:5)

在您的两种方式中,您不能输入除数字字符以外的字符。但它允许在那里粘贴任何字符(从任何源复制文本和在TextField中粘贴)。

进行验证的一个好方法是在提交后,

喜欢(对于整数):

try {
    Integer.parseInt(myNumField.getText());
} catch(Exception e) {
    System.out.println("Non-numeric character exist");
}

(或者你可以使用你的任何组合+上述方法)

答案 2 :(得分:4)

JavaFX对此用例有一个类TextFormatter。 它允许您在“文本内容”“提交”textProperty的{​​{1}}之前验证和调整文本内容。

见这个例子:

TextField

答案 3 :(得分:0)

<块引用>

此代码段只允许用户在 TextField 中输入数字。

    /**
     * This will check whether the incoming data from the user is valid.
     */
    UnaryOperator<TextFormatter.Change> numberValidationFormatter = change -> {
        if (change.getText().matches("\\d+")) {
            return change; //if change is a number
        } else {
            change.setText(""); //else make no change
            change.setRange( //don't remove any selected text either.
                    change.getRangeStart(),
                    change.getRangeStart()
            );
            return change;
        }
    };
    
     
    TextFormatter tf = new TextFormatter(numberValidationFormatter);
    
    textfield.setTextFormatter(tf);

答案 4 :(得分:-1)

Manuel Mauky发布的内容类似,但在groovy中是:

注意:这将防止输入除数字以外的任何其他字符。

def digitsOnlyOperator = new UnaryOperator<TextFormatter.Change>() {
        @Override
        TextFormatter.Change apply(TextFormatter.Change change) {
            return !change.contentChange || change.controlNewText.isNumber() ? change : null
        }
}
textField.textFormatter = new TextFormatter<>(digitsOnlyOperator)

在Groovy中可能有一种较短的方法。如果知道,请在此处发布。