2

私がやろうとしているのは、ユーザーが有効な応答を入力するまでプログラムメニューが実行されるwhileループを作成することです。

しかし、私が作成したスキャナーインスタンスはボールをプレーしたくなく、何を試してもNoSuchElementExceptionsをスローし続けます。

import java.util.Scanner;

public class Menu
{
    Menu()
    {
        isValid = false;
        uInput = 0;
    }

    public int mMain()
    {
        Scanner in2;

        do
        {           
            in2 = new Scanner(System.in); //For user input

            System.out.println("Please choose from the following options");
            System.out.println("1) Enter Employee Data");
            System.out.println("2) Look Up Employee Information");
            System.out.println("3) Employee Comparison");
            System.out.println("4) Quit");
            uInput = in2.nextInt(); //This is the line throwing the exception.

            if (uInput < 1 || uInput > 4)
            {
                System.out.println("Your choice was not valid, please choose another option.");
            }

            else
            {
                isValid = true;
                in2.close();
            }
        } while (!isValid);

       isValid = false; //reset for next time
       System.out.println("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"); //Clear screen

       return uInput;       
    }

    int uInput; //For user input
    String uInput2; //for bug fixing
    boolean isValid; //check for valid use input
}

そしてそれが必要な場合はここに私の主な方法があります:

public class prg420_w4_commission_program
{
    public static void main(String[] args)
    {       
    //class references
    Processing proc = new Processing();
    Menu menu = new Menu();

    //Set up Variables
    int uInput; //For user input
    boolean uQuit = false; //set up program loop bool

    //Opening message
    System.out.println("Welcome to the Employee Data Entry Creation program.  Please follow the on-screen prompts.");
    System.out.println("");

    proc.initEDatabase(); //initialize employee database


    while (!uQuit)
    {

        uInput = menu.mMain(); //call main menu

        //Check user input
        switch (uInput)
        {
            case 1:
                proc.addEDBEntry(); //add employee entries
                break;

            case 2:
                proc.findEmployee();
                break;

            case 3:
                proc.sortEDBase();
                break;

            case 4:
                uQuit = true;
                break;

            default:
                proc.addEDBEntry();
                break;                      
        }           
    }

    System.out.println("Thank you for using the Employee Data Entry Creation program.");
  }
}
4

1 に答える 1

2
in2.close();

最初のスキャンが成功した後、入力ストリームを閉じます。スキャンが成功するたびに、原因を指定stdinして入力ストリームから何かを取得しようとすると、がスローされます。ScannerNoSuchElementException

于 2012-09-30T22:24:04.017 に答える