FileReader for text file in Android
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 ?