gpt4 book ai didi

java - NoSuchElement 使用扫描仪

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:11:22 24 4
gpt4 key购买 nike

I have declared two strings and reading the input using Scanner(System.in).

在此之后,当我关闭扫描仪并再次使用扫描仪读取另一个输入时,它会抛出一个错误:NoSuchElementException。请在这方面指导我

import java.util.Scanner;
import java.io.*;

public class NumericInput

{
public static void main(String[] args)
{
// Declarations
Scanner in = new Scanner(System.in);
String string1;
String string2;

// Prompts
System.out.println("Enter the value of the First String .");
// Read in values
string1 = in.nextLine();
// When i am commenting below line(in.close) code is working properly.
in.close();
Scanner sc = new Scanner(System.in);
System.out.println("Now enter another value.");
string2 = sc.next();
sc.close();

System.out.println("Here is what you entered: ");
System.out.println(string1 + " and " + string2);
}

}

最佳答案

当你close你的扫描仪它也会关闭System.in输入流,您再次使用它,但它已关闭,因此当您尝试再次使用 Scanner 时,找不到打开的 System.in 流。

关于java - NoSuchElement 使用扫描仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27701568/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com