简体   繁体   English

Java验证输入

[英]Java validating input

is it possible in Java to check if a certain input is between a certain range and also an integer? Java中是否可以检查某个输入是否在某个范围和一个整数之间? I have written the following code: 我写了以下代码:

public void getBetAmountFromUser() {
    //Get Amount of Bet
    int x = 0;

    System.out.println("Your current pot is: " + potAmount);
    System.out.println("Enter your bet amount: ");
    x = input.nextInt();
    //Error message if bet is larger than pot and less than 0
    while (x>potAmount || x<0 || !(input.hasNextInt())){
        System.out.println("Error - cannot bet less than 0 or more than " + potAmount + "..Enter your bet amount: ");
        x = input.nextInt();
    }
    //Bet should be less than or equal to pot if 0 user quit
    if (x > 0 && x <= potAmount) {
        betAmount = x;
        potAmount = potAmount - betAmount;
    } else if (x == 0) {
        System.out.println("You end the game with pot " + potAmount);
        System.exit(0);
    } 

}

The following loop did not work on validating Integer 以下循环在验证Integer上不起作用

while (x>potAmount || x<0 || !(input.hasNextInt())){
        System.out.println("Error - cannot bet less than 0 or more than " + potAmount + "..Enter your bet amount: ");
        x = input.nextInt();
    }

You can try to use String in lieu of int . 您可以尝试使用String代替int Then, you can go ahead with again int using Integer.parseInt(x) because it's already been verified as being valid integer after do-while 然后,您可以使用Integer.parseInt(x)再次进行int因为在do-while之后它已经被验证为有效整数。

String x;
String regex = "[0-9]+";  // to check the string only is made up of digits

int potAmount = 10;
Scanner input = new Scanner(System.in);

do {
    System.out.println("Please input an integer");
    x = input.next();
} while (!x.matches(regex) || Integer.parseInt(x) > potAmount || Integer.parseInt(x) < 0);

int validBet = Integer.parseInt(x);
/* .
   .
   .  *\

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM