I am new to Android development.
I need to read a text file from the SD card and display that text file. Is there any way to view a text file directly in Android or
BufferedReader br = null; try { String fpath = Environment.getExternalStorageDirectory() + ; try { br = new BufferedReader(new FileReader(fpath)); } catch (FileNotFoundException e1) { e1.printStackTrace(); } String line = ""; while ((line = br.readLine()) != null) { //Do something here }