2

我正在尝试用 Java 创建一个基于文本的游戏,我会询问用户名并将其插入到游戏中。我试图用他们输入的字符串来评估任何数字。即09452asdf1234

这是与问题相关的代码。

String name, choiceSelection;
int choice;
name = JOptionPane.showInputDialog(null, "Enter your name!");

//CHECKS IF USER ENTERED LETTERS ONLY
if (Pattern.matches("[0-9]+", name))
{
    throw new NumberFormatException();
} 
else if (Pattern.matches("[a-zA-Z]+", name)) 
{
    if (Pattern.matches("[0-9]+", name))
    {
        throw new NumberFormatException();
    }
}

我试图弄清楚字符串中是否有任何数字,如果是,则抛出一个NumberFormatException,以便他们知道他们没有遵循正确的提示。

确保用户不在name字符串中输入数字的最佳方法是什么?

4

5 回答 5

3

您可以使用更简单的检查:

if (!name.replaceAll("[0-9]", "").equals(name)) {
    // name contains digits
}

replaceAll调用从 中删除所有数字nameequals仅当没有要删除的数字时,检查才会成功。

请注意,NumberFormatException在这种情况下抛出会产生误导,因为异常具有非常不同的含义。

于 2013-02-06T17:29:32.690 回答
2

首先考虑使用JFormattedTextField或输入验证器来防止用户输入数字。对于一次性项目来说,失去 JOptionPane 的简单性可能不值得,但它为最终用户简化了事情。

于 2013-02-06T17:45:47.560 回答
2

或者,您根本不允许用户在 .For 中输入任何数值textField。为此,您需要创建自定义PlainDocumentNonNumericDocument并将DocumentJTextField 对象设置为自定义NonNumericDocument

import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.text.Document;
import javax.swing.text.PlainDocument;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;

class NonNumericDocument extends PlainDocument 
{
    @Override
    public void insertString(int offs, String str, AttributeSet a) throws BadLocationException 
    {
        if (str == null) 
        {
            return;
        }
        char[] arr = str.toCharArray();
        for (int i = 0; i < arr.length; i++) 
        {
            if (Character.isDigit(arr[i]) || !Character.isLetter(arr[i]))//Checking for Numeric value or any special characters
            {
                return;
            }
        }
        super.insertString(offs, new String(str), a);
    }
}
//How to use NonNumericDocument
class  TextFrame extends JFrame
{
    JTextField tf ;
    public void prepareAndShowGUI()
    {
        tf = new JTextField(30);
        tf.setDocument(new NonNumericDocument());//Set Document here.
        getContentPane().add(tf,BorderLayout.NORTH);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pack();
        setVisible(true);
    }
    public static void main(String[] args) 
    {
        SwingUtilities.invokeLater ( new Runnable()
        {
            @Override
            public void run()
            {
                TextFrame tFrame = new TextFrame();
                tFrame.prepareAndShowGUI();
            }
        });
    }
}

您可以将它NonNumericDocument与代码中的任何 JTextField 一起使用,而无需担心non-numeric显式处理字符。

于 2013-02-06T17:52:01.957 回答
0

另一种检查方法是使用parseInt( String s )方法:

private boolean isNumber( String s ) {
    try {
        Integer.parseInt( s );
    } catch ( Exception e ) {
        return false; // if it is not a number it throws an exception
    }
    return true;
}
于 2013-02-06T18:14:12.917 回答
0

如果你想让用户只输入字母,你可以这样做:

if (name.matches("\\p{Alpha}+")) {
    // name contains only letters
}
于 2013-02-06T17:37:44.483 回答