Java FilePath Android
Posted
by
user654460
on Stack Overflow
See other posts from Stack Overflow
or by user654460
Published on 2011-03-11T00:06:20Z
Indexed on
2011/03/11
0:10 UTC
Read the original article
Hit count: 252
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
© Stack Overflow or respective owner