feat: Set up project skeleton with stub implementations for student tasks

This commit is contained in:
2026-05-24 06:38:55 +03:30
parent 68df67ed4d
commit b01a5654a1
5 changed files with 356 additions and 1 deletions
+39
View File
@@ -0,0 +1,39 @@
package dev.utils;
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.List;
public class FileManager {
public static List<String>
loadStudents(
String path)
throws Exception {
List<String> lines =
new ArrayList<>();
BufferedReader reader =
new BufferedReader(
new FileReader(path));
String line;
while ((line = reader.readLine())
!= null) {
// TODO:
// Add line to list
}
reader.close();
return lines;
}
}