I am using this to get my File located in src folder src/file1.txt
InputStream is = openFileInput(\"file1.txt\");
and using BufferedReader to R
Your src folder doesn't and won't exist on your emulator or device; it only exists on your host machine. If you want to read in a file delivered with your app, put it in either your raw or assets folder.