Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
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...
}
}
}