read failed: EBADF (Bad file number)

后端 未结 1 1948
时光取名叫无心
时光取名叫无心 2020-12-07 01:19

When I try do a copy one file of the external storage for into folder database, this error happens:

java.io.IOException: read failed: EBADF (Bad file

相关标签:
1条回答
  • 2020-12-07 01:58

    Check whether your input(stream) exists before reading.

    Also see if you have these permissons:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
    
    0 讨论(0)
提交回复
热议问题