InputMismatchException:无法识别字符串

InputMismatchException: String not recognized

我在下面写了一段 Java 代码。当 运行 它并输入任何值(定义的值,例如 latte,或任何其他值,例如 az 整数)时,我得到一个 InputMismatchException。

据我所知,这个异常意味着输入类型与预期类型不匹配。我错过了什么,为什么代码不能识别字符串输入?感谢支持

干杯,嘉柏

package Lesson1;

import java.util.Scanner;

public class Coffee {

    public static void main(String[] args) {

        //I define the type of coffees as Strings, plus the order as String as well
        String espresso = "espresso";
        String americano = "americano";
        String cappuccino = "cappuccino";
        String latte = "latte";
        String order = new String();

        //I ask the user for their input
        Scanner choice = new Scanner(System.in);
        System.out.println("What kind of coffee would you like? We have: espresso, americano, cappuccino and latte");

        //depending on the user's choice, the corresponding name is displayed; if any other string is entered, the else clause is displayed
        if (order.equals(choice.next(espresso))) {
            System.out.println("Your order: " + espresso);

        } else if (order.equals(choice.next(americano))) {
            System.out.println("Your order: " + americano);

        } else if (order.equals(choice.next(cappuccino))) {
            System.out.println("Your order: " + cappuccino);

        } else if (order.equals(choice.next(latte))) {
            System.out.println("Your order: " + latte);

        } else {
            System.out.println("Unfortunately we can't serve you. Have a nice day!");
        }

    }

}



Exception in thread "main" java.util.InputMismatchException
    at java.util.Scanner.throwFor(Unknown Source)
    at java.util.Scanner.next(Unknown Source)
    at java.util.Scanner.next(Unknown Source)
    at Lesson1.Coffee.main(Coffee.java:22)

您在默认输入中写了一次,但您尝试使用 choice.next(..).

多次读取

一个解决方案是在 if-else 语句之前的字符串中分配您的选择,然后使用 equalsIgnoreCase 检查它。

    //I ask the user for their input
    Scanner choice = new Scanner(System.in);
    System.out.println("What kind of coffee would you like? We have: espresso, americano, cappuccino and latte");

    String picked = choice.next();
    //depending on the user's choice, the corresponding name is displayed; if any other string is entered, the else clause is displayed
    if (picked.equalsIgnoreCase(espresso)) {
        System.out.println("Your order: " + espresso);

    } else if (picked.equalsIgnoreCase(americano)) {
        System.out.println("Your order: " + americano);

    } else if (picked.equalsIgnoreCase(cappuccino)) {
        System.out.println("Your order: " + cappuccino);

    } else if (picked.equalsIgnoreCase(latte)) {
        System.out.println("Your order: " + latte);

    } else {
        System.out.println("Unfortunately we can't serve you. Have a nice day!");
    }

我认为您使用的扫描仪有误。尝试使用不带参数的 next() 方法来获取用户输入,并且只调用一次(而不是在每个 if else 分支中)。像这样:

package com.company;

import java.util.Scanner;

public class Coffee {
    public static void main(String[] args) {

        //I define the type of coffees as Strings, plus the order as String as well
        String espresso = "espresso";
        String americano = "americano";
        String cappuccino = "cappuccino";
        String latte = "latte";

        //I ask the user for their input
        Scanner choice = new Scanner(System.in);
        System.out.println("What kind of coffee would you like? We have: espresso, americano, cappuccino and latte");

        //depending on the user's choice, the corresponding name is displayed; if any other string is entered, the else clause is displayed

        String order = choice.next();
        if (order.equals(espresso)) {
            System.out.println("Your order: " + espresso);

        } else if (order.equals(americano)) {
            System.out.println("Your order: " + americano);

        } else if (order.equals(cappuccino)) {
            System.out.println("Your order: " + cappuccino);

        } else if (order.equals(latte)) {
            System.out.println("Your order: " + latte);

        } else {
            System.out.println("Unfortunately we can't serve you. Have a nice day!");
        }

    }
}