how to read file from the phone memory in android?

后端 未结 2 1423
不思量自难忘°
不思量自难忘° 2020-12-06 15:08

I need to read the file from the phone memory.How read file ?can anyone help me??

2条回答
  •  情歌与酒
    2020-12-06 15:47

    (via google search)

    To read a file from internal storage:

    1. Call openFileInput() and pass it the name of the file to read. This returns a FileInputStream.
    2. Read bytes from the file with read().
    3. Then close the stream with close().

    Ref: http://developer.android.com/guide/topics/data/data-storage.html#filesInternal

提交回复
热议问题