4

所以这是场景:

我正在从网络下载 PDF 并将其保存在/0/Download/NSIT - Notices/"fileName".pdf

现在像这样发送 Intent:

private void openPDF(String fileName) {
    Log.d(TAG, "openPDF: called");
    Intent intent = new Intent(Intent.ACTION_VIEW);File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download", "NSIT - Notices");
    File myPDF = new File(Environment.getExternalStorageDirectory() + "/Download/NSIT - Notices", fileName + ".pdf");
    Uri uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", myPDF);
    Log.d(TAG, "openPDF: intent with uri: " + uri);
    intent.setDataAndType(uri, "application/pdf");
    context.startActivity(Intent.createChooser(intent, "Open with..."));
}

现在任何 PDF 阅读器(Google Drive PDF Reader、System PDF Viewer)都在说

The File Does Not Exist

图片: 在此处输入图像描述

谷歌坐着什么都不做(这就是为什么不包括它的图像)

Mainfest.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>

Provider_path.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>

我在 AsyncTask 中创建文件,但从该 AsyncTask 的 postExecute 打开

File myDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/Download", "NSIT - Notices");
            File myPDF = new File(myDir, params[1] + ".pdf");
            if (!myDir.exists())
                myDir.mkdirs();
            try {
                fileOutputStream = new FileOutputStream(myPDF);
                fileOutputStream.write(response.bodyAsBytes());
                fileOutputStream.close();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            Log.d(TAG, "doInBackground: Download complete");

日志猫

在此处输入图像描述

以前它是扔的,然后我用这个东西FileUriExposedException修复了。FileProvider问题是我的应用程序下载的 pdf 文件已成功创建,我可以从任何文件管理器(现在是 ES 文件资源管理器)成功打开它,但不能从我的应用程序 :(。我是新手FileProvider。需要帮助!

PS:这也不是我的设备问题。用另外两部具有不同 ROM 和 API >= 23 的手机进行了测试

4

2 回答 2

4

请设置intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

它会将您的文件的访问权限授予其他提供商

于 2018-08-30T13:32:29.507 回答
-1

请参阅文件提供程序的文档

内容提供者是否可供其他应用程序使用:

true:提供程序可用于其他应用程序。任何应用程序都可以使用提供者的内容 URI 来访问它,这取决于为提供者​​指定的权限。

false:提供程序不可用于其他应用程序。访问您的应用程序的提供程序。只有与提供者具有相同用户 ID (UID) 的应用程序才能访问它。

尝试更改 android:exported="true"

于 2018-08-30T13:16:42.300 回答