在不知道字符串长度的情况下,如何在 JFormattedTextField 上使用 MaskFormatter?
因此,我有一个 JFormattedTextField,我需要限制用户输入除字母和连字符之外的任何内容。我不太确定如何在不明确知道要输入的字符串长度的情况下使用 MaskFormatter。
我的代码目前如下所示:
MaskFormatter formatter = new MaskFormatter();
formatter.setValidCharacters("ABCDEFGHIJKLMNOPQRSTUVWXYZabscedfghijklmnopqrstuvwxyz-");
JFormattedTextField firstNameTextField = new JFormattedTextField(formatter);
当我调用 firstNameTextField.setText(getName())
时,文本未设置,留下一个无法使用的空文本字段。
任何帮助将不胜感激。谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您不希望在字符串长度方面做出承诺,因此我的印象是,如果您使用常规 JTextField 和 KeyListener 及其 KeyAdapter,那么实现 JFormattedTextField 及其 MaskFormatter 的效果要容易得多。您可以根据允许的字符串检查每次击键,然后接受该字符或发出蜂鸣声。
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.
嘿,我遇到了类似的问题,我使用 jTextfield 代替 jFormatter 并使用 keyListener 实现了相同的效果,
这里的代码
在这里“f”只不过是 JFrame
Hey i had a similar problem and what i used instead of jFormatter was jTextfield and acheived the same with keyListener
Heres the code
Here 'f' is nothing but JFrame