Tagged Questions
1
vote
3answers
3k views
Get FileNotFoundException when initialising FileInputStream with File object
I am trying to initialise a FileInputStream object using a File object. I am getting a FileNotFound error on the line
fis = new FileInputStream(file);
This is strange since I have opened this file ...