我想使用Android的DownloadManager下载pdf,然后允许用户使用其pdf查看器应用程序将其打开。
为此,我使用以下命令保存了启动下载的操作:
public String downloadFile(String url, String name) {
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setDescription("Downloading file: " + name);
request.setTitle("My app name");
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setMimeType("application/pdf");
Uri destinationUri = Uri.fromFile(new File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), name+".pdf"));
request.setDestinationUri(destinationUri);
manager.enqueue(request);
return destinationUri.toString();
}
我正在保存Uri,并使用它通过如下的PDF查看应用程序打开PDF:
public void openDownloadedFile(String uri) {
Intent intent = new Intent(Intent.ACTION_VIEW);
File file = new File(uri);
Uri uriForFile = FileProvider.getUriForFile(context.getApplicationContext(), context.getString(R.string.my_file_authority), file);
intent.setDataAndType(uriForFile, "application/pdf");
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent);
}
我的application
的清单文件包含以下提供程序:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="@string/my_file_authority"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
在provider_paths
中我还有以下内容:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-files-path
name="my_pdfs"
path="."/>
<external-path
name="my_pdfs"
path="."/>
<files-path
name="my_pdfs"
path="."/>
</paths>
我知道那里还有2个额外的元素,但我只是想确保自己不会错过任何内容。
不幸的是,由于以下原因导致崩溃:
java.lang.IllegalArgumentException: Failed to find configured root that contains /file:/storage/emulated/0/Android/data/{my_app_id}/files/Download/filename_of_pdf.pdf
at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:738)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:417)
一些其他详细信息:
minSdkVersion 21
targetSdkVersion 27
我正在使用Android O在Samsung S8和Android模拟器上进行测试。
有人可以告诉我为什么会这样吗? 我怎么知道Android正在考虑我的provider_paths?
谢谢!
PS:
答案 0 :(得分:1)
File file = new File(uri);
Uri
不是文件。
java.lang.IllegalArgumentException: Failed to find configured root that contains /file:/storage/emulated/0/Android/data/{my_app_id}/files/Download/filename_of_pdf.pdf
/file:/storage/emulated/0/Android/data/{my_app_id}/files/Download/filename_of_pdf.pdf
不是Android上的文件系统路径(对于任何其他操作系统,也不是AFAIK)。
要解决此问题:
将new File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), name+".pdf")
实例中的destinationUri
的结果保留为File
将此File
与getUriForFile()
答案 1 :(得分:0)
我在这里参加聚会有点晚了,但是看到我也在为此而苦苦挣扎,我想我会提供我终于找到的解决方案:经过大量的挖掘,我发现我们必须小心file://
和content://
。两者都用作Uris,但第一个都公开访问文件(DownloadManager方法),另一个通过权限访问(FileProvider方法)。
我将总结一下我最终的做法。就我而言,我在应用程序中使用下载的文件(从mp3中提取元数据,然后再播放)。我已经包含了用于检索供我使用的文件的方法,因为在这里,弄清楚使用哪种方法访问文件也是很多尝试的错误。希望借此,我可以帮助其他也在尝试这种Uris和权限迷宫的人。
使用DownloadManager下载文件
//set up the download manager and the file destination
final DownloadManager dlManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
String destination = Environment.getExternalStorageDirectory() + "*APPFOLDER*";
//ensure the folder exists before continuing
File file = new File(destination);
if (!file.exists())
file.mkdirs();
destination += "/" + "*FILENAME*";
final Uri destinationUri = Uri.parse("file://" + destination);
//create the download request
DownloadManager.Request dlRequest = new DownloadManager.Request(uri);
dlRequest.setDestinationUri(destinationUri);
final long dlId = dlManager.enqueue(dlRequest);
访问文件
File myPath = new File(Environment.getExternalStorageDirectory(), "*APPFOLDER*");
File myFile = new File(myPath, "*FILENAME*");
Uri myUri = FileProvider.getUriForFile(ctxt, ctxt.getApplicationContext().getPackageName() + ".file_provider", myFile);
ctxt.grantUriPermission(ctxt.getApplicationContext().getPackageName(), myUri, Intent.FLAG_GRANT_READ_URI_PERMISSION);
MediaMetadataRetriever mmr = new MediaMetadataRetriever();
mmr.setDataSource(ctxt, myUri);