public class StudentListReader{
private ArrayList<Student> students;
private String fileName;
public StudentListReader(String fileName){
students = new ArrayList<>();
this.fileName = fileName;
}
public Student parseStudent(String line){
Scanner scanner;
if(fileName != null){
scanner = new Scanner(new File(fileName);
//code what to read...
}
}
}