java.util.NoSuchElementException错误

Rau*_*ryn 1 java readfile

我尝试从文本文件中读取整行,并以不同的方式显示它们.例如,

    123456J;Gabriel;12/12/1994;67;67;89;
Run Code Online (Sandbox Code Playgroud)

但控制台的结果如下:

    123456J Gabriel 72(which is average of three numbers)
Run Code Online (Sandbox Code Playgroud)

这是我的代码:

    public class Student{

String adminNo;
String name;
GregorianCalendar birthDate;
int test1,test2,test3;

public Student(String adminNo,String name,String birthDate,int test1, int test2, int test3){
    this.adminNo = adminNo;
    this.name = name;
    this.birthDate = MyCalendar.convertDate(birthDate);
    this.test1 = test1;
    this.test2 = test2;
    this.test3 = test3;
}

public Student(String studentRecord){
    String strBirthDate;
    Scanner sc = new Scanner(studentRecord);
    sc.useDelimiter(";");
    adminNo = sc.next();
    name = sc.next();
    strBirthDate = sc.next();
    birthDate = MyCalendar.convertDate(strBirthDate.toString());
    test1 = sc.nextInt();
    test2 = sc.nextInt();
    test3 = sc.nextInt();
}

public int getAverage(){ 
    return (( test1 + test2 + test3 ) / 3 ) ;
}

public String toString(){
    return (adminNo + " " + name + " " + getAverage());
}

public static void main(String [] args){

    Student s = new Student ("121212A", "Tan Ah Bee", "12/12/92", 67, 72, 79);
    System.out.println(s);

    String fileName = "student.txt";
    try{
        FileReader fr = new FileReader(fileName);
        Scanner sc = new Scanner(fr);

        while(sc.hasNextLine()){
            Student stud = new Student(sc.nextLine());
            System.out.println(stud.toString());
        }

        fr.close();
    }catch(FileNotFoundException exception){
        System.out.println("File " + fileName + " was not found");
    }catch(IOException exception){
        System.out.println(exception);
    }
}
Run Code Online (Sandbox Code Playgroud)

而错误:

    Exception in thread "main" java.util.NoSuchElementException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at Student.<init>(Student.java:24)
at Student.main(Student.java:52)
Run Code Online (Sandbox Code Playgroud)

但我收到java.util.NoSuchElementException错误.我错过了什么吗?它刚刚起作用,但突然之间出现了错误.我不知道为什么.

任何帮助将不胜感激提前感谢.

Paw*_*cyk 5

您可以将Student构造函数修改为类似下面的内容,以检查发生异常时的行.

public Student(String studentRecord){
    String strBirthDate;
    Scanner sc = new Scanner(studentRecord);
    sc.useDelimiter(";");

    try {
         adminNo = sc.next();
         name = sc.next();
         strBirthDate = sc.next();
         birthDate = MyCalendar.convertDate(strBirthDate.toString());
         test1 = sc.nextInt();
         test2 = sc.nextInt();
         test3 = sc.nextInt();
    } catch (NoSuchElementException exception)
        System.out.println("NoSuchElementException, the line was: " + studentRecord);
    }
}
Run Code Online (Sandbox Code Playgroud)