如何限制用户输入的位数? [重复]

问题描述 投票:0回答:3
Pattern p = Pattern.compile("^[0-9]{0,3}$");
Matcher m = p.matcher(in);
if (m.find()) {
    JOptionPane.showMessageDialog(null, " 4 integers please");
}

这是一个添加数字的按钮

尝试创建限制对话框中数字数量的异常,它会检测数字是否在限制范围内,但不会停止程序。

java regex swing exception joptionpane
3个回答
0
投票

您可以简单地使用

in.matches("\\d{4}")
作为条件,并且仅当该条件为
true
时才添加到文本区域。

import javax.swing.JOptionPane;

public class Main {
    public static void main(String[] args) {
        String in = JOptionPane.showInputDialog("Number: ");
        if (in.matches("\\d{4}")) {
            // ...Code to add the value to the textarea
        } else {
            JOptionPane.showMessageDialog(null, "Only 4 digits please.");
        }
    }
}

0
投票

我不知道这段代码的上下文,但它不调用自定义异常。如果用户输入无效输入,只需使用循环来显示对话框:

Pattern p = Pattern.compile("^[0-9]{0,3}$");
Matcher m = p.matcher(in);
while (!m.find()) {
    in = JOptionPane.showInputDialog(null, "Please only enter four integers:");
    m = p.matcher(in);
}
// ...

此外,您要将

if(m.find())
更改为
if(!m.find())
,否则仅当用户输入正确数量的整数时才会显示“请仅输入四个整数:”对话框。


如果必须使用异常,只需创建一个扩展

Exception
的类 班级:

public class MyException extends Exception {

    public MyException(int amount) {
        super("Only " + amount + " integers are allowed");
    }

}

并在 if 语句中实现它:

if (!m.find()) {
    throw new MyException(4);
}

0
投票

您提供的代码确实少于所需的代码..

但是这里有一种方法,当你的

TextArea
中输入的字符超过 3 时触发事件。

假设您的

TextArea
名为
txtArea

    txtArea.textProperty().addListener((observable, oldValue, newValue) -> {
        if(newValue.length()>3){
            JOptionPane.showMessageDialog(null, " 4 integers please");
            //Do whatever you need after the Alert is shown
            txtArea.setText(oldValue);
        }
    });
© www.soinside.com 2019 - 2024. All rights reserved.