我尝试从文本文件中读取整行并以不同的方式显示它们。例如,
123456J;Gabriel;12/12/1994;67;67;89;
但控制台中的结果将是:
123456J Gabriel 72(which is average of three numbers)
这是我的代码:
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);
}
}
和错误:
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)
但我收到java.util.NoSuchElementException错误。我错过了什么吗?它现在可以工作,但突然出现错误。我不知道为什么。
任何帮助将不胜感激在此先感谢。