如何显示错误消息而不是Java异常?

问题描述 投票:1回答:1

我正在尝试为Java分配创建一个Guessing Game,除了异常处理外,我拥有所需的一切,您会看到我正在尝试使其显示一条错误消息,而不是在线程“ main” java.util中显示Exception。当有人尝试输入字母形式的数字时,InputMismatchException。遵循我的代码。(我知道我需要尝试才能捉住,但我不知道该放什么。)

package guessNumber;


import java.util.Scanner;

public class GuessNumberApp {

    public static void main(String[] args) {
        final int LIMIT = 10;

        System.out.println("Guess the number!");
        System.out.println("I'm thinking of a number from 1 to " + LIMIT);
        System.out.println();

        // get a random number between 1 and the limit
        double d = Math.random() * LIMIT; // d is >= 0.0 and < limit
        int number = (int) d;             // convert double to int
        number++;                        // int is >= 1 and <= limit

        // prepare to read input from the user
        Scanner sc = new Scanner(System.in);
        int count = 1;



        while (true) {
            int guess = sc.nextInt();
            System.out.println("You guessed: " + guess);


            if (guess < 1 || guess > LIMIT) {
                System.out.println("Your Guess is Invalid.");
                continue;
            }

            if (guess < number) {
                System.out.println("Too Low.");
            } else if (guess > number) {
                System.out.println("Too High.");
            } else {
                System.out.println("You guessed it in " + count + " tries.\n");
                break;
            }

            count++;
        }


        System.out.println("Bye!");


    }

}
java eclipse exception
1个回答
1
投票
尝试类似的事情:

try { int guess = sc.nextInt(); } catch(InputMismatchException e) { System.out.println("some nice error message"); continue; }

© www.soinside.com 2019 - 2024. All rights reserved.