42

使用时,我有一个仅在我的应用程序中的华为设备上发生的异常FileProvider.getUriForFile

Exception: java.lang.IllegalArgumentException: Failed to find configured root that contains /storage/<card name>/Android/data/<app package>/files/.export/2016-10-06 13-22-33.pdf
   at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(SourceFile:711)
   at android.support.v4.content.FileProvider.getUriForFile(SourceFile:400)

这是我的清单中文件提供程序的定义:

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

配置路径的资源文件:

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

关于这个问题的原因以及为什么它只发生在华为设备上的任何想法?鉴于我没有华为设备,我该如何调试?

更新:

我在我的应用程序中添加了更多日志,但在这些设备上打印时得到了一些不一致的ContextCompat.getExternalFilesDirs结果context.getExternalFilesDir

ContextCompat.getExternalFilesDirs:
/storage/emulated/0/Android/data/<package>/files
/storage/sdcard1/Android/data/<package>/files

context.getExternalFilesDir:
/storage/sdcard1/Android/data/<package>/files

这与该ContextCompat.getExternalFilesDirs声明的文档不一致The first path returned is the same as getExternalFilesDir(String)

这解释了这个问题,因为我context.getExternalFilesDir在我的代码中使用并FileProvider使用ContextCompat.getExternalFilesDirs.

4

4 回答 4

22

Android N 的更新(保留下面的原始答案,并确认这种新方法在生产中有效):

正如您在更新中所指出的,许多华为设备型号(例如 KIW-L24、ALE-L21、ALE-L02、PLK-L01 和其他各种型号)违反了 Android 调用ContextCompat#getExternalFilesDirs(String). 它们不是返回Context#getExternalFilesDir(String)(即默认条目)作为数组中的第一个对象,而是返回第一个对象作为外部 SD 卡的路径(如果存在)。

通过违反此订购合同,这些带有外部 SD 卡的华为设备将IllegalArgumentException在调用 rootFileProvider#getUriForFile(Context, String, File)时崩溃external-files-path。虽然您可以采用多种解决方案来尝试处理此问题(例如编写自定义FileProvider实现),但我发现最简单的方法是捕获此问题并且:

  • Pre-N: Return Uri#fromFile(File),它不适用于 Android N 及更高版本,因为FileUriExposedException
  • N:将文件复制到您的cache-path(注意:如果在 UI 线程上完成,这可能会引入 ANR),然后返回FileProvider#getUriForFile(Context, String, File)复制的文件(即完全避免错误)

可以在下面找到完成此操作的代码:

public class ContentUriProvider {

    private static final String HUAWEI_MANUFACTURER = "Huawei";

    public static Uri getUriForFile(@NonNull Context context, @NonNull String authority, @NonNull File file) {
        if (HUAWEI_MANUFACTURER.equalsIgnoreCase(Build.MANUFACTURER)) {
            Log.w(ContentUriProvider.class.getSimpleName(), "Using a Huawei device Increased likelihood of failure...");
            try {
                return FileProvider.getUriForFile(context, authority, file);
            } catch (IllegalArgumentException e) {
                if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
                    Log.w(ContentUriProvider.class.getSimpleName(), "Returning Uri.fromFile to avoid Huawei 'external-files-path' bug for pre-N devices", e);
                    return Uri.fromFile(file);
                } else {
                    Log.w(ContentUriProvider.class.getSimpleName(), "ANR Risk -- Copying the file the location cache to avoid Huawei 'external-files-path' bug for N+ devices", e);
                    // Note: Periodically clear this cache
                    final File cacheFolder = new File(context.getCacheDir(), HUAWEI_MANUFACTURER);
                    final File cacheLocation = new File(cacheFolder, file.getName());
                    InputStream in = null;
                    OutputStream out = null;
                    try {
                        in = new FileInputStream(file);
                        out = new FileOutputStream(cacheLocation); // appending output stream
                        IOUtils.copy(in, out);
                        Log.i(ContentUriProvider.class.getSimpleName(), "Completed Android N+ Huawei file copy. Attempting to return the cached file");
                        return FileProvider.getUriForFile(context, authority, cacheLocation);
                    } catch (IOException e1) {
                        Log.e(ContentUriProvider.class.getSimpleName(), "Failed to copy the Huawei file. Re-throwing exception", e1);
                        throw new IllegalArgumentException("Huawei devices are unsupported for Android N", e1);
                    } finally {
                        IOUtils.closeQuietly(in);
                        IOUtils.closeQuietly(out);
                    }
                }
            }
        } else {
            return FileProvider.getUriForFile(context, authority, file);
        }
    }

}

随着file_provider_paths.xml

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

一旦您创建了这样的类,请将您的调用替换为:

FileProvider.getUriForFile(Context, String, File)

和:

ContentUriProvider.getUriForFile(Context, String, File)

坦率地说,我不认为这是一个特别优雅的解决方案,但它确实允许我们使用正式记录的 Android 行为而无需做任何过于激烈的事情(例如编写自定义FileProvider实现)。我已经在生产中对此进行了测试,因此我可以确认它可以解决这些华为崩溃问题。对我来说,这是最好的方法,因为我不想花太多时间来解决明显是制造商的缺陷。

与此错误更新到 Android N 的华为设备之前的更新:

这不适用于 Android N 及更高版本FileUriExposedException,但我还没有遇到在 Android N 上配置错误的华为设备。

public class ContentUriProvider {

    private static final String HUAWEI_MANUFACTURER = "Huawei";

    public static Uri getUriForFile(@NonNull Context context, @NonNull String authority, @NonNull File file) {
        if (HUAWEI_MANUFACTURER.equalsIgnoreCase(Build.MANUFACTURER) && Build.VERSION.SDK_INT < Build.VERSION_CODES.N) {
            Log.w(ContentUriProvider.class.getSimpleName(), "Using a Huawei device on pre-N. Increased likelihood of failure...");
            try {
                return FileProvider.getUriForFile(context, authority, file);
            } catch (IllegalArgumentException e) {
                Log.w(ContentUriProvider.class.getSimpleName(), "Returning Uri.fromFile to avoid Huawei 'external-files-path' bug", e);
                return Uri.fromFile(file);
            }
        } else {
            return FileProvider.getUriForFile(context, authority, file);
        }
    }
}
于 2016-12-24T00:21:20.943 回答
6

我遇到了同样的问题,最终我的解决方案是始终使用ContextCompat.getExternalFilesDirs调用来构建File用作FileProvider. 这样您就不必使用上述任何解决方法。

换句话说。如果您可以控制File用于调用的参数FileProvider和/或您不关心文件可能最终保存在经典/storage/emulated/0/Android/data/文件夹之外(这应该很好,因为它们都是同一张 SD 卡)然后我建议做我做过的事情。

如果不是您的情况,那么我建议将上述答案与自定义getUriForFile实现一起使用。

于 2017-04-19T13:55:37.350 回答
2

我现在对这个问题的解决方案,即使它不完美,也是FileProvider用以下路径声明 my (以便能够提供设备上的所有文件):

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

这没有正式记录,可能会与 v4 支持库的未来版本中断,但我看不到任何其他解决方案可以使用现有的FileProvider.

于 2017-03-17T14:42:32.107 回答
0

尝试手动提供 uri

var fileUri:Uri
try{
   fileUri = FileProvider.getUriForFile(
                            this,
                            "com.example.android.fileprovider",
                            it
                        )
                    } catch (e:Exception){
                        Log.w("fileProvider Exception","$e")

 fileUri=Uri.parse("content://${authority}/${external-path name}/${file name}")
                    }

在 AndroidManifest.xml 中的 provider 标签中从 android:authorites 获取权限

从 file_paths.xml 中的外部路径标记中的名称获取外部路径名称

于 2019-12-27T09:23:28.877 回答