This is a snapshot of a folder i imported into eclipse. I want to read from the .txt files inside it.
But if i write like
try(BufferedReader h = new BufferedReader(new FileReader("input8.txt"))){
i get FileNotFoundException
. Can someone help out ?
Edit: Agad and Math's answers helped out a lot. I did a refined search again , found This article quite a good read for this particular problem once agad pointed things out.