0

我正在制作一个 JOptionpane,用户可以在其中输入他的名字。所以不能为空也不能是数字

空白部分正在工作,但现在我必须为数字部分找到解决方案

正如您在我的代码中看到的那样,我创建了一个 while 循环来检查“naam”是否为空。现在我需要找到一种方法来检查“naam”是否不是数字。

String naam = JOptionPane.showInputDialog("Geef uw naam in: ");

while (naam.equals("")) {
   JOptionPane.showMessageDialog(null, "Geef een naam in", "Geef naam", JOptionPane.ERROR_MESSAGE);
   naam = JOptionPane.showInputDialog("Geef uw naam in: ");
4

3 回答 3

3

您可以简单地直接在对话框中过滤输入,而不是搞乱必须显示错误对话框并重新显示对话框......

import java.awt.EventQueue;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.text.AbstractDocument;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.DocumentFilter;

public class TestOptionPane08 {

    public static void main(String[] args) {
        new TestOptionPane08();
    }

    public TestOptionPane08() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JTextField name = new JTextField(10);
                ((AbstractDocument) name.getDocument()).setDocumentFilter(new DocumentFilter() {
                    public String filter(String text) {
                        StringBuilder sb = new StringBuilder(text.length());
                        for (char c : text.toCharArray()) {
                            if (!Character.isDigit(c)) {
                                sb.append(c);
                            }
                        }
                        return sb.toString();
                    }

                    @Override
                    public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException {
                        super.insertString(fb, offset, filter(string), attr);
                    }

                    @Override
                    public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
                        String filter = filter(text);
                        super.replace(fb, offset, length, filter, attrs);
                    }
                });

                JOptionPane.showMessageDialog(null, name, "Name Please", JOptionPane.QUESTION_MESSAGE);

            }
        });
    }
}

现在,您可以添加JTextFieldtoJPanel并添加 aJLabel甚至错误消息...

于 2013-03-07T23:52:58.077 回答
1

使用正则表达式

 if (naam.matches("\\d+")) {/*it is a number*/}

String.matches(regexp)true如果字符串与作为参数给出的正则表达式匹配,则返回。在此示例中,\\d+匹配一个或多个数字。

您可以尝试其他模式以禁止包含无效字符(例如“ My#name”)的字符串,但这取决于您对“名称字符”的定义。

例如[A-Z][a-z]*(?:\\s[A-Z][a-z]*),匹配具有一个或多个大写字符序列后跟零个或多个小写字符的字符串,每个序列由一个空格分隔,例如My Name Is X.

于 2013-03-07T23:43:40.663 回答
1

您可以使用正则表达式检查它是否包含任何数字。java中的正则表达式“\\D”代表非数字,“+”代表1或更多。因此,您可以将 while 循环更改为:

while (!naam.matches("\\D+"))

这将包括空等号检查,因为您需要至少有一个非数字才能匹配。

于 2013-03-07T23:45:27.597 回答