如何处理无法解码流:java.io.FileNotFoundException:on on FileProvider(No such file or directory)

时间:2017-03-08 15:19:43

标签: android android-fileprovider

我试图通过摆脱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 。我不知道它是否与将路径视为一样。希望有人可以为我解决这个问题。
  2. 我遇到的完整错误是无法解码流:java.io.FileNotFoundException:/ external_files/DCIM/Camera/IMG_20170308_175833.jpg(没有这样的文件或目录)

    代码段.java文件是here,用于查看我的实现。

1 个答案:

答案 0 :(得分:0)

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