在不知道字符串长度的情况下,如何在 JFormattedTextField 上使用 MaskFormatter?

发布于 2024-10-14 09:57:30 字数 470 浏览 4 评论 0原文

因此,我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黎夕旧梦 2024-10-21 09:57:30

由于您不希望在字符串长度方面做出承诺,因此我的印象是,如果您使用常规 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.

话少情深 2024-10-21 09:57:30

嘿,我遇到了类似的问题,我使用 jTextfield 代替 jFormatter 并使用 keyListener 实现了相同的效果,

这里的代码

jTextFieldName.addKeyListener(new KeyListener() {

            @Override
            public void keyTyped(KeyEvent evt) {
                char c = evt.getKeyChar();
                if(!Character.isDigit(c) || (c==KeyEvent.VK_BACK_SPACE) || (c==KeyEvent.VK_DELETE))
                {
                    f.getToolkit().beep();
                    evt.consume();
                }

            }

            @Override
            public void keyReleased(KeyEvent e) {
            }
            @Override
            public void keyPressed(KeyEvent e) {
            }
        });

在这里“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

jTextFieldName.addKeyListener(new KeyListener() {

            @Override
            public void keyTyped(KeyEvent evt) {
                char c = evt.getKeyChar();
                if(!Character.isDigit(c) || (c==KeyEvent.VK_BACK_SPACE) || (c==KeyEvent.VK_DELETE))
                {
                    f.getToolkit().beep();
                    evt.consume();
                }

            }

            @Override
            public void keyReleased(KeyEvent e) {
            }
            @Override
            public void keyPressed(KeyEvent e) {
            }
        });

Here 'f' is nothing but JFrame

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文