Tagged Questions
2
votes
0answers
121 views
Android FileInputStream FileNotFoundException even though permissions in place, file exists, storage is mounted, can read etc
I'm a beginning developer for Android and running into the following problem when trying to access an XML file on the SD card.
To start, I performed the following checks:
- Permission to read/write ...
1
vote
2answers
1k views
How to load a config xml file with FileInputStream, but getting a FileNotFoundException
My build path in Eclipse looks like this:
ProjectName
-- WEB-INF
-- classes
-- myClass.class
-- configs
-- myConfig.xml
My absolute path to the config currently ...
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 ...
0
votes
3answers
485 views
fileinputstream throwing filenotfoundexception?
I'm trying to open up an xml file to parse it, but I am getting stopped trying to open the file. My code is:
try {
return new FileInputStream(location);
} catch ...