Refer to this I 've download the excel example,and run it ,it 's not Ok. about saving.
[Qoate]
An error has occurred in sub:main$ResumableSub_SaveTable_Clickresume(java line:579)
java.io.FileNotFoundException:/storage/emulatated/0/1.xls
pen failed:EPERM(Operation not permitted)
[/Qoate]
so then I added the permission code as belows,but it's still error
[Qoate]
An error has occurred in sub:main$ResumableSub_SaveTable_Clickresume(java line:579)
java.io.FileNotFoundException:/storage/emulatated/0/1.xls
[/Qoate]
so then I added the permission code as belows,but it's still error
B4X:
For Each permission As String In Array(rp.PERMISSION_WRITE_EXTERNAL_STORAGE, rp.PERMISSION_READ_EXTERNAL_STORAGE)
rp.CheckAndRequest(permission)
Wait For Activity_PermissionResult (permission As String, Result As Boolean)
If Result = False Then
ToastMessageShow("No permission!", True)
Activity.Finish
Return
End If
Next