java.util.NoSuchElementException:找不到行

时间:2011-08-26 18:35:05

标签: java java.util.scanner

当我通过扫描仪读取文件时,我的程序中出现了运行时异常。

java.util.NoSuchElementException: No line found     
   at java.util.Scanner.nextLine(Unknown Source)    
   at Day1.ReadFile.read(ReadFile.java:49)  
   at Day1.ParseTree.main(ParseTree.java:17) 

我的代码是:

while((str=sc.nextLine())!=null){
    i=0;
    if(str.equals("Locations"))
    {
        size=4;
        t=3;
        str=sc.nextLine();
        str=sc.nextLine();
    }
    if(str.equals("Professions"))
    {
        size=3;
        t=2;
        str=sc.nextLine();
        str=sc.nextLine();
    }
    if(str.equals("Individuals"))
    {
        size=4;
        t=4;
        str=sc.nextLine();
        str=sc.nextLine();
    }

int j=0;
String loc[]=new String[size];
while(j<size){
    beg=0;
    end=str.indexOf(',');
    if(end!=-1){
        tmp=str.substring(beg, end);
        beg=end+2;
    }
    if(end==-1)
    {
        tmp=str.substring(beg);
    }
    if(beg<str.length())
        str=str.substring(beg);
    loc[i]=tmp;
    i++;

    if(i==size ){
        if(t==3)
        {
            location.add(loc);
        }
        if(t==2)
        {
            profession.add(loc);
        }
        if(t==4)
        {
            individual.add(loc);
        }
        i=0;
    }
    j++;
    System.out.print("\n");
}

6 个答案:

答案 0 :(得分:27)

Scanner您需要检查下一行是否有hasNextLine()

所以循环变为

while(sc.hasNextLine()){
    str=sc.nextLine();
    //...
}

它的读者在EOF

上返回null 在这段代码中,这取决于输入是否格式正确

答案 1 :(得分:12)

你正在调用nextLine()并且当没有行时它会抛出异常,就像javadoc所描述的那样。它永远不会返回null

http://download.oracle.com/javase/1,5.0/docs/api/java/util/Scanner.html

答案 2 :(得分:4)

无论出于何种原因,如果遇到无法读取的特殊字符,Scanner类也会发出同样的异常。除了在每次调用hasNextLine()之前使用nextLine()方法之外,请确保将正确的编码传递给Scanner构造函数,例如:

Scanner scanner = new Scanner(new FileInputStream(filePath), "UTF-8");

答案 3 :(得分:2)

你真正的问题是你调用“sc.nextLine()”的次数比行数多。

例如,如果您只有10个输入行,则只能调用“sc.nextLine()”10次。

每次调用“sc.nextLine()”时,都会消耗一个输入行。如果调用“sc.nextLine()”的次数超过行数,则会出现一个名为“java.util.NoSuchElementException:No line found”的异常。

如果你必须调用“sc.nextLine()” n 次,那么你必须至少有 n 行。

尝试更改您的代码以匹配您使用行数调用“sc.nextLine()”的次数,并保证您的问题将得到解决。

答案 4 :(得分:0)

我也遇到了这个问题。 就我而言,问题在于我关闭了其中一个功能内的扫描仪。

public class Main 
{
	public static void main(String[] args) 
	{
		Scanner menu = new Scanner(System.in);
        boolean exit = new Boolean(false);
    while(!exit){
		String choose = menu.nextLine();
        Part1 t=new Part1()
        t.start();
	    System.out.println("Noooooo Come back!!!"+choose);
		}
	menu.close();
	}
}

public class Part1 extends Thread 
{
public void run()
  { 
     Scanner s = new Scanner(System.in);
     String st = s.nextLine();
     System.out.print("bllaaaaaaa\n"+st);
     s.close();
	}
}

		 

上面的代码具有相同的功能,解决方案是只关闭扫描仪一次。

答案 5 :(得分:0)

需要使用顶部注释,但也要注意 nextLine()。要消除此错误,只需调用

sc.nextLine()

从while循环内部

 while (sc.hasNextLine()) {sc.nextLine()...}

您正在使用期间仅向前浏览 1 行。然后使用 sc.nextLine()读取单行之前的 2 行,您要求while循环向前看。

还要将多个 IF 语句更改为 IF,ELSE ,以避免同时读取多行。