java.io.IOException:Android 11 中没有此类设备错误

问题描述

FileChannel src = new FileInputStream(source).getChannel();
FileChannel dst = new FileOutputStream(destination).getChannel();
dst.transferFrom(src,src.size());  

src 路径为 --> /storage/emulated/0/Pictures/IMG_20210630_182546.jpg

这是目标文件夹 --> /storage/emulated/0/Android/data/com.tp.qa/files/temp

目标图片名称--> /gallery1625059659.jpg

从上述来源复制文件有问题吗?

解决方法

在 android 11 中,不允许直接访问存储。这是 documentation 如何在 Android 11 中使用范围权限。您可以试试这个 solution。就我而言,这是有效的。