本文介紹了使用掃描儀的NoSuchElement的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
I have declared two strings and reading the input using Scanner(System.in).
之后,當(dāng)我關(guān)閉Scanner并再次使用Scanner讀取另一個(gè)輸入時(shí),它拋出錯(cuò)誤:NoSuchElementException。
請(qǐng)?jiān)谶@方面給我指點(diǎn)
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);
}
}
推薦答案
當(dāng)您close
掃描儀也關(guān)閉System.in
輸入流時(shí),您正在再次使用它,但它已關(guān)閉,因此當(dāng)您再次嘗試使用Scanner
時(shí),找不到打開的System.in
流。
這篇關(guān)于使用掃描儀的NoSuchElement的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,