web-dev-qa-db-ja.com

FileProvider-ダウンロードディレクトリからファイルを開く

ダウンロードフォルダからファイルを開くことができません。

これを使用してファイルをダウンロードし、ダウンロードフォルダーに保存できます。

   DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
    request.setDescription(descricao);
    request.setTitle(titulo);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        request.allowScanningByMediaScanner();
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
    }
    request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, nome);

    enq = downloadManager.enqueue(request);

この後、ファイルはディレクトリフォルダーに正しく保存されます:Android >>内部共有ストレージ>>ダウンロード。パス buntuフォルダによるAndroid HD-パスを参照

そして、私はこれでこのファイルを開いてみます:

downloadManager = (DownloadManager)getContext().getSystemService(DOWNLOAD_SERVICE);
        BroadcastReceiver receiver = new BroadcastReceiver() {

            @Override
            public void onReceive(Context context, Intent intent) {
                String action = intent.getAction();
                if(DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
                    long downloadId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, 0);
                    DownloadManager.Query query = new DownloadManager.Query();
                    query.setFilterById(enq);
                    Cursor c = downloadManager.query(query);
                    if(c.moveToFirst()) {
                        int columnIndex = c.getColumnIndex(DownloadManager.COLUMN_STATUS);
                        if(DownloadManager.STATUS_SUCCESSFUL == c.getInt(columnIndex)) {
                            String uriString = c.getString(c.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));

                            if (uriString.substring(0, 7).matches("file://")) {
                                uriString =  uriString.substring(7);
                            }

                            File file = new File(uriString);

                            Uri uriFile = FileProvider.getUriForFile(getContext(), BuildConfig.APPLICATION_ID + ".fileprovider", file);
                            String mimetype = "application/pdf";
                            Intent myIntent = new Intent(Intent.ACTION_VIEW);
                            myIntent.setDataAndType(uriFile, mimetype);

                            Intent intentChooser = Intent.createChooser(myIntent, "Choose Pdf Application");
                            startActivity(intentChooser);
                        }
                    }
                }
            }
        };

        getContext().registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));

これでマニフェストでファイルプロバイダーを宣言します。

    <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/provider_paths"/>
    </provider>

そしてこれで:

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

しかし、ボタンをクリックしてダウンロードすると、「このファイルはアクセスできません。場所またはネットワークを確認して、もう一度やり直してください。」というメッセージが表示されます。

再開中:

1-ファイルがダウンロードされ、ディレクトリフォルダーに保存されます。

2-インテントは開始されますが、ファイルは開かれません。

3-デバッグモードでは、「new File(urlString)」で次のように表示されます。「urlString =/storage/emulated/0/Download/name.pdf」

4-「FileProvider.getUriFromFile ...」デバッグモードには、次のものがあります。

「uriFile = content://com.example.Android.parlamentaresapp.fileprovider/Download/name.pdf」

ありがとうございました。

14
Sarara

addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)およびIntentFileProviderで使用するUristartActivity()を呼び出します。これがないと、アクティビティにはコンテンツにアクセスする権利がありません。

18
CommonsWare