I am trying to access a csv file from the assets for my app and all I get is FileNotFoundException. I get the same when I try to access it from elsewhere. Any idea what I should be doing here? Log messages work just fine until then. The error on the logcat is as follows.
Tag Text System.err java.io.FileNotFoundException C:\Users.....\assets\cms.csv: open failed ENOENT (no such file or directory)
for the code:
br = new BufferedReader(new FileReader
("C:\\Users\\Srihari\\workspace\\CMSHealthcare\\assets\\cms.csv"));
Any help is appreciated!
Thanks in advance!