How can I read a text file from the SD card in Android?

后端 未结 6 2267
太阳男子
太阳男子 2020-11-22 16:42

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

6条回答
  •  傲寒
    傲寒 (楼主)
    2020-11-22 17:05

    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 
            }
    

提交回复
热议问题