gpt4 book ai didi

android - 如何处理无法解码流 : java. io.FileNotFoundException:使用 FileProvider(没有这样的文件或目录)

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:22:18 24 4
gpt4 key购买 nike

我试图通过摆脱 FileUriExposedException 来支持 Nougat。当我使用 Uri.fromFile(gettheImageFilehere()) 方法时,我成功地获取了图像路径 file:///storage/emulated/0/DCIM/Camera/IMG_20170308_171951.jpg当我使用

FileProvider.getUriForFile(HomeView.this, getApplicationContext().getPackageName() + ".provider",
gettheImageFilehere());

我得到的图像路径为:/external_files/DCIM/Camera/IMG_20170308_171951.jpg

我尝试使用 android.os.FileUriExposedException 上提供的实现这是我在 androidmanifest.xml 里面的代码,我添加了提供程序:

<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

然后我在 res/xml 文件夹中创建了 provider_paths.xml,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

我对以上的疑惑:

  1. 在某些示例中,我发现他们使用了完整路径。即 Android/data/com.example.com/files。我不知道它是否与将路径作为 a.希望有人能帮我解决这个问题。

我得到的完整错误是无法解码流:java.io.FileNotFoundException:/external_files/DCIM/Camera/IMG_20170308_175833.jpg(没有这样的文件或目录)

代码 fragment .java文件是here查看我的实现。

最佳答案

尝试使用 Intent iGallery = new Intent(Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI);

关于android - 如何处理无法解码流 : java. io.FileNotFoundException:使用 FileProvider(没有这样的文件或目录),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42675145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com