使用Android Intent打开PDF文件

时间:2018-08-30 12:42:42

标签: android pdf android-intent android-fileprovider android-storage

这是场景:

我正在从网络上下载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

图片: enter image description here

Google坐着不做任何事情(这就是为什么不包括其图片)

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");

Logcat

enter image description here

以前,它是抛出FileUriExposedException的东西,然后我解决了这个FileProvider的问题。问题是我的应用程序下载的pdf文件已成功创建,我可以从任何文件管理器(现在为ES File Explorer)成功打开它,但无法从我的应用程序:(。我是FileProvider的新手。帮助!

PS:这也不是我的设备问题。已测试其他两款具有不同ROM和API> = 23

的手机

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:-1)

请参阅File provider的文档

  

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

     

true:该提供程序可用于其他应用程序。任何申请   可以使用提供者的内容URI来访问它,但前提是   为提供者指定的权限。

     

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

尝试更改android:exported =“ true”