14 lines
282 B
Java
14 lines
282 B
Java
import java.io.FileNotFoundException;
|
|
import java.io.FileReader;
|
|
|
|
public class TransportDataLoader {
|
|
|
|
public static void loadData(String path) {
|
|
try {
|
|
FileReader file = new FileReader(path);
|
|
} catch (FileNotFoundException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|