我的方法运行,但在执行一次后获得异常。我不明白为什么。第24行,例外中注明的行是“choice = in.nextInt();”
这是我的例外:
1查找项目。
2显示所有项目 3更新项目。
4将项目保存到磁盘 5退出。
1
您选择从文件中查找项目 输入您要查找的DVD的sku 857295个
857295 Star.Wars 152
1找到一个项目 2显示所有项目 3更新项目。
4将项目保存到磁盘 5退出。
线程“main”中的异常java.util.NoSuchElementException
在java.util.Scanner.throwFor(未知来源)
在java.util.Scanner.next(未知来源)
在java.util.Scanner.nextInt(未知来源)
在java.util.Scanner.nextInt(未知来源)
在version4.version4.main(version4.java:24)
这是我的代码:
import java.util.*;
import java.io.*;
public class version4
{
public static void main(String[] args) throws FileNotFoundException
{
Scanner in = new Scanner(System.in);
boolean exit = false;
int choice = 0;
while (!exit)
{
System.out.println("1 Find an item.\n2 Display all items.\n3 Update item.\n4 Save item to disk.\n5 Quit.");
choice = in.nextInt();
switch (choice){
case 1: System.out.println("You chose to find an item from file."); findItem(); break;
case 2: System.out.println("You chose to display all items."); readDisplay(); break;
case 3: System.out.println("You chose to update an item."); itemUpdate(); break;
case 4: System.out.println("You chose to save an item to disk."); itemAdd(); break;
case 5: exit = true; in.close(); break;
default: System.out.println("That is not a valid option."); break;
}
}
System.out.println("Goodbye.");
}
public static void findItem() throws FileNotFoundException {
FileReader reader = new FileReader("read_record.txt");
Scanner fin = new Scanner(reader);
String str = null;
ArrayList<String> dvdfile = new ArrayList<String>();
if (fin != null && fin.hasNext()) { // do we have a scanner, is there anything to read?
while (fin.hasNext()) { // while there's something to read...
str = fin.next(); // read it.
if (str == null) { // end if it's null
break;
}
dvdfile.add(str); // otherwise add it.
}
} fin.close();
Scanner kb = new Scanner(System.in);
System.out.println("Enter the sku of the dvd you wish to find.");
String dvdSku = kb.next();
int index = dvdfile.indexOf(dvdSku);
// Finds the dvd that matches sku entered, and prints out its attributes under correct rows.
String skuToFind = dvdfile.get(index); String titleToFind = dvdfile.get(index+1); String lengthToFind = dvdfile.get(index+2);
System.out.printf("%-10s %-15s %10s %n",skuToFind,titleToFind,lengthToFind);
kb.close();
}
答案 0 :(得分:0)
即使扫描程序不再有下一个要提供的元素,看起来你正在调用next。抛出异常。在调用Scanner#hasNext()
Scanner#next()
代码是
Scanner in = new Scanner(System.in);
boolean exit = false;
int choice = 0;
while (!exit)
{
System.out.println("1 Find an item.\n2 Display all items.\n3 Update item.\n4 Save item to disk.\n5 Quit.");
while(in.hasNext()){
//next token available
if(in.hasNextInt()){
/next token is an int value
choice = in.nextInt();
}
}
}
根据文件
public boolean hasNext()
如果此扫描器的输入中有另一个标记,则返回true。 此方法可能会在等待扫描输入时阻止。扫描仪不会超过任何输入。