So I have a JFormattedTextField and I need to restrict the user from entering anything but letters and hyphens. I'm not quite sure how to use the MaskFormatter without explicitly knowing the length of the string that is to be entered.

My code currently looks like this:

MaskFormatter formatter = new MaskFormatter();
formatter.setValidCharacters("ABCDEFGHIJKLMNOPQRSTUVWXYZabscedfghijklmnopqrstuvwxyz-");
JFormattedTextField firstNameTextField = new JFormattedTextField(formatter);

When I call firstNameTextField.setText(getName()), the text does not get set, leaving me with an unusable, empty text field.

Any help would be greatly appreciated. Thanks.

link|improve this question

20% accept rate
feedback

1 Answer

Since you want no commitment in terms of string length, i have the impression, that it is a lot easier to achieve the effect of a JFormattedTextField and its MaskFormatter, if you use a regular JTextField and a KeyListener with its KeyAdapter. You can check each keystroke against the allowed character string and either accept the character or beep.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.