Java FilePath Android
- by user654460
I have an android app that I am trying to get a file path for a SAX parser. I have the following structure:
assets:(Where my xml file is)
src(same level as assets)
com
msi
androidrss(The calling java file is in here)
I tried several variations of this:
InputSource is = new InputSource("file://../../../../assets/Rss.xml");
But I always get a FNF Exception
Any suggestions?
Thanks