我正在编写一些简单的代码来解析文件并返回行数,但是eclipse中的小红色框不会消失,所以我认为我正在触发无限循环。我正在阅读的文本文件只有10行...这是代码:我在做什么错?

import java.io.*;
import java.util.Scanner;
public class TestParse {
    private int noLines = 0;
    public static void main (String[]args) throws IOException {
        Scanner defaultFR = new Scanner (new FileReader ("C:\\workspace\\Recommender\\src\\IMDBTop10.txt"));
        TestParse demo = new TestParse();
        demo.nLines (defaultFR);
        int x = demo.getNoLines ();
        System.out.println (x);
    }
    public TestParse() throws IOException
    {
        noLines = 0;
    }
    public void nLines (Scanner s) {
        try {
            while (s.hasNextLine ())
                noLines++;
        }
        finally {
                if (s!=null) s.close ();
        }
    }
    public int getNoLines () {
        return noLines;
    }
}

最佳答案

您不会在while循环中调用s.nextLine()

应该:

        while(s.hasNextLine()){
           s.nextLine(); // <<<
            noLines++;

          }

关于java - 为什么此代码触发无限循环?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5369317/

10-09 06:06