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

后端 未结 6 2218
太阳男子
太阳男子 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:07

    In response to

    Don't hardcode /sdcard/

    Sometimes we HAVE TO hardcode it as in some phone models the API method returns the internal phone memory.

    Known types: HTC One X and Samsung S3.

    Environment.getExternalStorageDirectory().getAbsolutePath() gives a different path - Android

提交回复
热议问题