Hi I was reading files using FileReader and Buffereader only and it was working perfectly
fr = new FileReader("C:\\Users\\User\\Documents\\Bus_Station\\Bus station\\tripFile");
br = new BufferedReader(fr);
But I want to read put these files in somewhere so I put them in Referecnced Libraries so I can read from them on any machine without path but it is not working :/
(File file = new File("tripFile.txt");
file.createNewFile();
fr = new FileReader(file););
Any help ?