我要完成的工作如下:
向用户询问数字,并检查用户输入提供的数字是否为7位整数。
如果是字符串,则抛出InputMismatchException并再次询问数字。除了使用正则表达式并提供数字1234567之外,还有其他简便的方法吗?另一个问题是,如果我输入一个值(例如12345678),则由于int将其舍入,因此如何避免这种情况。

int number = 0;
try {
    number = scan.nextInt();    // Phone Number is 7 digits long - excludes area code
} catch(InputMismatchException e) {
    System.out.println("Invalid Input.");
    number = validateNumber(number, scan);
} finally {
    scan.nextLine();    // consumes "\n" character in buffer
}

// Method checks to see if the phone number provided is 7 digits long
// Precondition: the number provided is a positive integer
// Postcondition: returns a 7 digit positive integer
public static int validateNumber(int phoneNumber, Scanner scan) {
     int number = phoneNumber;
     // edited while((String.valueOf(number)).length() != 7) to account for only positive values
     // Continue to ask for 7 digit number until a positive 7 digit number is provided
     while(number < 1000000 || number > 9999999) {
        try {
            System.out.print("Number must be 7 digits long. Please provide the number again: ");
            number = scan.nextInt();    // reads next integer provided
        } catch(InputMismatchException e) { // outputs error message if value provided is not an integer
            System.out.println("Incorrect input type.");
        } finally {
            scan.nextLine();    // consumes "\n" character in buffer
        }
     }
     return number;
}

最佳答案

有效的电话号码不一定是整数(例如,包含国家代码的+符号)。因此,请使用字符串代替。

基本正则表达式(7位数字,不验证国家/地区代码等)的简单示例:

public class Test {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);


        String telephoneNumber = stdin.nextLine();

        System.out.println(Pattern.matches("[0-9]{7}", telephoneNumber));


    }
}

关于java - 验证7位数的电话号码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20767895/

10-12 03:26