所以我想做的是从文件中读取然后使用它读取的内容并将其放在对象中(文件中的第一行表示有多少学生在所述文件中,然后它通过学生。 amount也是我想要创建的对象的数量)。我已经尝试使用LinkedList(可能需要进行更改)来存储信息,并希望在对象中使用但无济于事。这是我的代码:
public static void start() {
Scanner s = null;
try {
s = new Scanner(new File("students.dat"));
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
List<String> student = new LinkedList<String>();
while (s.hasNextLine()) {
student.add(s.nextLine());
}
s.close();
int count;
count = Integer.parseInt((student.get(0)));
int id = 1;
while (count > 0) {//code in here or replacing here
count--;
}
}
不能帮助,但我觉得我错过了一些简单的东西......正在考虑使用每个循环或集合。任何帮助或方向将非常感激。