I have read sources here & there, but did not get the following code working. Basically, I wish to read a text file, named \'Administrator\' from the folder \'src\'. I will
This is not correct:
new FileReader(getClass().getResourceAsStream ("/DBTextFiles/Administrator.txt"))
You want:
new InputStreamReader(getClass().getResourceAsStream ("/DBTextFiles/Administrator.txt"))