已解决:安卓11以上调用相机拍照报错
{“err”: “/storage/emulated/0/temp.jpg: open failed: ENOENT (No such file or directory)”}
以下是异常信息
E/MediaProvider: insertFileIfNecessary failed,
java.lang.IllegalArgumentException: Primary directory null not allowed for content://media/external_primary/file; allowed directories are [Download, Documents],
这个错误通常是由于在 Android 11 及更高版本中的变更所导致的。
在这些版本中,应用程序只能访问特定的目录,
例如 “Download” 和 “Documents”。
如果您的应用程序尝试将文件保存到不允许的目录中,您将会收到这个错误消息。
为了解决这个问题,您可以尝试将图片保存到您应用程序的私有目录中。
以下是一个示例:文章来源:https://www.toymoban.com/news/detail-488842.html
val imageBitmap = data?.extras?.get("data") as Bitmap
val contextWrapper = ContextWrapper(applicationContext)
val directory = contextWrapper.getDir("my_images", Context.MODE_PRIVATE)
val file = File(directory, "temp.jpg")
val outputStream = FileOutputStream(file)
imageBitmap.compress(Bitmap.CompressFormat.JPEG, 80, outputStream)
outputStream.close()
// 然后使用 Retrofit 或其他网络库将 file 上传到服务器
在这个示例中,我们创建了一个名为 “my_images” 的私有目录,并将临时文件保存在其中。
这样做可以避免将文件保存到不允许的目录中。文章来源地址https://www.toymoban.com/news/detail-488842.html
到了这里,关于已解决:安卓11以上操作文件报错E/MediaProvider: insertFileIfNecessary failed java.lang.IllegalArgumentException: Pr的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!