FileReader for text file in Android
01:12 24 Sep 2011

Good times!

My Android app is trying to read simple text file, using usual Java combination

FileReader fr = new FileReader("file:///android_asset/example.txt");
BufferedReader bfr = new BufferedReader(fr);

But what ever I do, I'm getting File not Found exeption, although there is another html-file in this directory and shown in WebView correctly.
So, my question is:
FileReader can be used for simple reading text file or I have to use InputStream ?

android filereader file-not-found